deleted notification of mention that is appearing too late

This commit is contained in:
Simon Grim 2015-03-11 00:07:56 +05:00
parent dd9f6bcc63
commit 473fdb8c24

View File

@ -98,10 +98,12 @@ function requestMentionsCount() {
if( _newMentionsUpdated ) { if( _newMentionsUpdated ) {
_newMentionsUpdated = false; _newMentionsUpdated = false;
$.MAL.soundNotifyMentions(); if ( _newMentions ) {
$.MAL.soundNotifyMentions();
if ($.Options.getShowDesktopNotifMentionsOpt() === 'enable') { if ($.Options.getShowDesktopNotifMentionsOpt() === 'enable') {
$.MAL.showDesktopNotif(false, polyglot.t('You got')+' '+polyglot.t('new_mentions', _newMentions)+'.', false,'twister_notification_new_mentions', $.Options.getShowDesktopNotifMentionsTimerOpt(), function(){$.MAL.showMentions(defaultScreenName)}, false) $.MAL.showDesktopNotif(false, polyglot.t('You got')+' '+polyglot.t('new_mentions', _newMentions)+'.', false,'twister_notification_new_mentions', $.Options.getShowDesktopNotifMentionsTimerOpt(), function(){$.MAL.showMentions(defaultScreenName)}, false)
}
} }
} }