From 550f7827bfc98fd53b1a23d5ac1bb037082e889d Mon Sep 17 00:00:00 2001 From: JC Brand Date: Tue, 8 Mar 2016 12:11:35 +0000 Subject: [PATCH] Bugfix. Contact wasn't being sent. updates #443 --- src/converse-core.js | 2 +- src/converse-notification.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/converse-core.js b/src/converse-core.js index 8e8db5cfa..b8d033b8d 100755 --- a/src/converse-core.js +++ b/src/converse-core.js @@ -1544,7 +1544,7 @@ }.bind(this), function () { this.clearSpinner(); - converse.log("Error while trying to fetch archived messages", "error"); + converse.log("Error or timeout while trying to fetch archived messages", "error"); }.bind(this) ); }, diff --git a/src/converse-notification.js b/src/converse-notification.js index 6f6086c46..16ef460ed 100644 --- a/src/converse-notification.js +++ b/src/converse-notification.js @@ -171,7 +171,7 @@ * status has changed. */ if (converse.areDesktopNotificationsEnabled()) { - converse.showChatStateNotification(); + converse.showChatStateNotification(contact); } };