diff --git a/src/converse-controlbox.js b/src/converse-controlbox.js index e7aca64ab..3e943c1c4 100644 --- a/src/converse-controlbox.js +++ b/src/converse-controlbox.js @@ -62,7 +62,7 @@ }, ChatBoxes: { - onChatBoxFetched: function (collection, resp) { + onChatBoxesFetched: function (collection, resp) { collection.each(function (chatbox) { if (chatbox.get('id') !== 'controlbox' && !chatbox.get('minimized')) { chatbox.trigger('show'); diff --git a/src/converse-core.js b/src/converse-core.js index 83cbf17b8..f231d7648 100755 --- a/src/converse-core.js +++ b/src/converse-core.js @@ -2312,7 +2312,7 @@ }.bind(this), null, 'message', 'chat'); }, - onChatBoxFetched: function (collection, resp) { + onChatBoxesFetched: function (collection, resp) { /* Show chat boxes upon receiving them from sessionStorage * * This method gets overridden entirely in src/converse-controlbox.js @@ -2331,7 +2331,7 @@ this.registerMessageHandler(); this.fetch({ add: true, - success: this.onChatBoxFetched.bind(this) + success: this.onChatBoxesFetched.bind(this) }); },