Fixed send + load recent bug
This commit is contained in:
parent
351875cda4
commit
1a9c603ce2
@ -976,6 +976,9 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
|
||||
historyStorage.count = historyResult.count || historyResult.messages.length;
|
||||
|
||||
var offset = 0;
|
||||
if (!maxID && historyResult.messages.length) {
|
||||
maxID = historyResult.messages[0].id + 1;
|
||||
}
|
||||
if (maxID > 0) {
|
||||
for (offset = 0; offset < historyStorage.history.length; offset++) {
|
||||
if (maxID > historyStorage.history[offset]) {
|
||||
@ -2328,6 +2331,7 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
|
||||
} else {
|
||||
historyStorage = historiesStorage[peerID] = {count: null, history: [message.id], pending: []};
|
||||
}
|
||||
console.log('upd', historyStorage.history);
|
||||
|
||||
saveMessages([message]);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user