Improved sync

rm debug
This commit is contained in:
Igor Zhukov 2018-01-12 20:38:59 +04:00
parent f0a551e1aa
commit 4c00dca398
2 changed files with 3 additions and 2 deletions

View File

@ -3109,7 +3109,6 @@ angular.module('myApp.services')
var channelID = AppPeersManager.isChannel(peerID) ? -peerID : 0
var mid = AppMessagesIDsManager.getFullMessageID(update.id, channelID)
var message = messagesStorage[mid]
console.warn(dT(), update, pendingData, message)
if (message) {
var historyStorage = historiesStorage[peerID]
var pos = historyStorage.pending.indexOf(tempID)

View File

@ -3419,7 +3419,7 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
filter: {_: 'channelMessagesFilterEmpty'},
pts: channelState.pts,
limit: 30
}).then(function (differenceResult) {
}, {timeout: 0x7fffffff}).then(function (differenceResult) {
// console.log(dT(), 'channel diff result', differenceResult)
channelState.pts = differenceResult.pts
@ -3467,6 +3467,8 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
$rootScope.$broadcast('stateSynchronized')
channelState.syncLoading = false
}
}, function () {
channelState.syncLoading = false
})
}