From 39fd0d0f5f776ff2d889db7718d3001627d65719 Mon Sep 17 00:00:00 2001 From: ansuz Date: Tue, 18 Jul 2017 10:57:37 +0200 Subject: [PATCH] notify if you're focused on a conversation in a bacgkrounded tab --- www/common/common-messaging.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/common-messaging.js b/www/common/common-messaging.js index 56c100835..f34100601 100644 --- a/www/common/common-messaging.js +++ b/www/common/common-messaging.js @@ -406,7 +406,7 @@ define([ // Notify on new messages var notify = function (curvePublic) { - if (Msg.active === curvePublic) { return; } + //if (Msg.active === curvePublic) { return; } var $friend = $listContainer.find('.friend').filter(function (idx, el) { return $(el).data('key') === curvePublic; });