Browse Source

Fixed unread in dialogs list

Closes #935
master
Igor Zhukov 9 years ago
parent
commit
287a35eea6
  1. 2
      app/js/messages_manager.js

2
app/js/messages_manager.js

@ -1676,7 +1676,7 @@ angular.module('myApp.services') @@ -1676,7 +1676,7 @@ angular.module('myApp.services')
}
function wrapForDialog (msgID, dialog) {
var useCache = dialog === undefined;
var useCache = dialog !== undefined;
var unreadCount = dialog && dialog.unread_count;
if (useCache && messagesForDialogs[msgID] !== undefined) {

Loading…
Cancel
Save