From 28bc3536bd924ebfd8059ebe3da544c586977c11 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 17 Nov 2020 13:59:20 +1100 Subject: [PATCH] cleanup unused stuff in conversation.js --- js/models/conversations.js | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/js/models/conversations.js b/js/models/conversations.js index 29fec15be..aa9351014 100644 --- a/js/models/conversations.js +++ b/js/models/conversations.js @@ -152,10 +152,6 @@ this.typingRefreshTimer = null; this.typingPauseTimer = null; - this.messageSendQueue = new JobQueue(); - - this.selectedMessages = new Set(); - // Keep props ready const generateProps = () => { this.cachedProps = this.getProps(); @@ -524,8 +520,6 @@ isKickedFromGroup: !!this.get('isKickedFromGroup'), leftGroup: !!this.get('left'), - selectedMessages: this.selectedMessages, - onClick: () => this.trigger('select', this), onBlockContact: () => this.block(), onUnblockContact: () => this.unblock(), @@ -1032,16 +1026,6 @@ return current; }, - - queueMessageSend(callback) { - const taskWithTimeout = textsecure.createTaskWithTimeout( - callback, - `conversation ${this.idForLogging()}` - ); - - return this.messageSendQueue.add(taskWithTimeout); - }, - getRecipients() { if (this.isPrivate()) { return [this.id];