Browse Source

Fixed mention notifications

master
Igor Zhukov 9 years ago
parent
commit
a7524e4ac4
  1. 3
      app/js/services.js

3
app/js/services.js

@ -2352,7 +2352,8 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils']) @@ -2352,7 +2352,8 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
!message.out &&
message.unread) {
var isMutedPromise = NotificationsManager.getPeerMuted(peerID);
var notifyPeer = message.flags & 16 ? message.from_id : peerID;
var isMutedPromise = NotificationsManager.getPeerMuted(notifyPeer);
var timeout = $rootScope.idle.isIDLE && StatusManager.isOtherDeviceActive() ? 30000 : 1000;
setTimeout(function () {
isMutedPromise.then(function (muted) {

Loading…
Cancel
Save