From e1d24847977d43a235372911bca06b56b5de71a7 Mon Sep 17 00:00:00 2001 From: Beaudan Date: Mon, 17 Jun 2019 12:49:35 +1000 Subject: [PATCH] Can't update conversation that hasn't been created yet --- js/models/conversations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/conversations.js b/js/models/conversations.js index a5d16afad..a31c35fc3 100644 --- a/js/models/conversations.js +++ b/js/models/conversations.js @@ -168,7 +168,7 @@ // Online status handling this.set({ isOnline: lokiP2pAPI.isOnline(this.id) }); if (this.id === this.ourNumber) { - this.setFriendRequestStatus(FriendRequestStatusEnum.friends); + this.set({ friendRequestStatus: FriendRequestStatusEnum.friends }); } this.messageSendQueue = new JobQueue();