Bugfix. Contact wasn't being sent. updates #443

This commit is contained in:
JC Brand 2016-03-08 12:11:35 +00:00
parent d92645c8d3
commit 550f7827bf
2 changed files with 2 additions and 2 deletions

View File

@ -1544,7 +1544,7 @@
}.bind(this), }.bind(this),
function () { function () {
this.clearSpinner(); 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) }.bind(this)
); );
}, },

View File

@ -171,7 +171,7 @@
* status has changed. * status has changed.
*/ */
if (converse.areDesktopNotificationsEnabled()) { if (converse.areDesktopNotificationsEnabled()) {
converse.showChatStateNotification(); converse.showChatStateNotification(contact);
} }
}; };