Eliminate some conversation fields which are no longer used
This commit is contained in:
parent
e08c5e3307
commit
0297279084
2 changed files with 7 additions and 4 deletions
|
@ -128,6 +128,9 @@
|
|||
this.unset('unidentifiedDelivery');
|
||||
this.unset('unidentifiedDeliveryUnrestricted');
|
||||
this.unset('hasFetchedProfile');
|
||||
this.unset('tokens');
|
||||
this.unset('lastMessage');
|
||||
this.unset('lastMessageStatus');
|
||||
},
|
||||
|
||||
isMe() {
|
||||
|
@ -956,8 +959,8 @@
|
|||
|
||||
let hasChanged = false;
|
||||
const { lastMessage, lastMessageStatus } = lastMessageUpdate;
|
||||
lastMessageUpdate.lastMessage = null;
|
||||
lastMessageUpdate.lastMessageStatus = null;
|
||||
delete lastMessageUpdate.lastMessage;
|
||||
delete lastMessageUpdate.lastMessageStatus;
|
||||
|
||||
hasChanged = hasChanged || lastMessage !== this.lastMessage;
|
||||
this.lastMessage = lastMessage;
|
||||
|
@ -1076,7 +1079,7 @@
|
|||
},
|
||||
|
||||
isSearchable() {
|
||||
return !this.get('left') || !!this.get('lastMessage');
|
||||
return !this.get('left');
|
||||
},
|
||||
|
||||
async endSession() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue