From 3690d1c20513674a072d1175a57e2aa90d53504a Mon Sep 17 00:00:00 2001 From: JC Brand Date: Tue, 1 Mar 2016 22:40:19 +0000 Subject: [PATCH] Fix. Used the wrong listenere. --- src/converse-notification.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/converse-notification.js b/src/converse-notification.js index 815bc94ba..7f00e1297 100644 --- a/src/converse-notification.js +++ b/src/converse-notification.js @@ -142,7 +142,7 @@ }; converse.on('contactStatusChanged', converse.showChatStateNotification); - converse.on('message', converse.showMessageNotification); + converse.on('message', converse.notifyOfNewMessage); } }); }));