From 1c3cef1eed9ce23b04e1f01fae80fea11eb462ef Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Tue, 2 Jan 2018 10:40:44 -0800 Subject: [PATCH] fix(notifications): reduce duration of initially muted notification The current notification for starting muted is 2 minutes, which may seem like "forever" so reduce it to dismiss faster. --- modules/UI/UI.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/UI/UI.js b/modules/UI/UI.js index 66e9ab4fa..4dd50e059 100644 --- a/modules/UI/UI.js +++ b/modules/UI/UI.js @@ -882,8 +882,7 @@ UI.notifyInitiallyMuted = function() { 'notify.mutedTitle', 'connected', 'notify.muted', - null, - 120000); + null); }; /**