From e3c0f2147a8066497d562f7531514e6417c6305f Mon Sep 17 00:00:00 2001 From: Mikunj Date: Tue, 5 Feb 2019 11:12:55 +1100 Subject: [PATCH] Fixed variable name. --- js/models/conversations.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/models/conversations.js b/js/models/conversations.js index 7c0f57354..ed26772ca 100644 --- a/js/models/conversations.js +++ b/js/models/conversations.js @@ -162,7 +162,7 @@ // Online status handling this.set({ isOnline: lokiP2pAPI.isOnline(this.id) }); - this.jobQueue = new JobQueue(); + this.messageSendQueue = new JobQueue(); }, isMe() { @@ -1018,7 +1018,7 @@ `conversation ${this.idForLogging()}` ); - return this.jobQueue.add(taskWithTimeout); + return this.messageSendQueue.add(taskWithTimeout); }, getRecipients() {