mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 12:19:41 +00:00
Enable click on draft quotes, fetch groups from contact modal
This commit is contained in:
@@ -156,6 +156,8 @@ export class ConversationModel extends window.Backbone
|
||||
|
||||
lastSuccessfulGroupFetch?: number;
|
||||
|
||||
throttledUpdateSharedGroups?: () => Promise<void>;
|
||||
|
||||
private cachedLatestGroupCallEraId?: string;
|
||||
|
||||
private cachedIdenticon?: CachedIdenticon;
|
||||
@@ -229,6 +231,9 @@ export class ConversationModel extends window.Backbone
|
||||
this.updateLastMessage.bind(this),
|
||||
200
|
||||
);
|
||||
this.throttledUpdateSharedGroups =
|
||||
this.throttledUpdateSharedGroups ||
|
||||
window._.throttle(this.updateSharedGroups.bind(this), FIVE_MINUTES);
|
||||
|
||||
this.contactCollection = this.getContactCollection();
|
||||
this.contactCollection.on(
|
||||
|
||||
Reference in New Issue
Block a user