Skip to content

Commit

Permalink
修复了一个命名小bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sanbei101 committed Aug 2, 2024
1 parent 7ddbd0b commit 58eac94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/service/chat/chat_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ChatService {
.from('chat_message')
.stream(primaryKey: ['timeStamp'])
.eq('receiverEmail', receiverEmail)
.order('time_stamp', ascending: false) // 按时间戳降序排列消息
.order('timeStamp', ascending: false) // 按时间戳降序排列消息
.map((snapshot) {
return snapshot.map((message) {
return {
Expand Down

0 comments on commit 58eac94

Please sign in to comment.