From a12569e35654de7af86b885ee0457f058d32512f Mon Sep 17 00:00:00 2001 From: lilia Date: Mon, 3 Oct 2016 08:42:46 +0900 Subject: [PATCH] Fix destination on synced timer updates --- js/models/conversations.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/models/conversations.js b/js/models/conversations.js index 1a34c87e..d6ab54b9 100644 --- a/js/models/conversations.js +++ b/js/models/conversations.js @@ -193,6 +193,9 @@ source : source } }); + if (this.isPrivate()) { + message.set({destination: this.id}); + } message.save(); return message; },