Fix the chat list order and last message timestamp updates

このコミットが含まれているのは:
eugenijm 2020-09-16 05:08:12 +03:00
コミット 92caaa2d7f
1個のファイルの変更1行の追加0行の削除

ファイルの表示

@ -143,6 +143,7 @@ const chats = {
const isNewMessage = (chat.lastMessage && chat.lastMessage.id) !== (updatedChat.lastMessage && updatedChat.lastMessage.id)
chat.lastMessage = updatedChat.lastMessage
chat.unread = updatedChat.unread
chat.updated_at = updatedChat.updated_at
if (isNewMessage && chat.unread) {
newChatMessageSideEffects(updatedChat)
}