Merge branch '1177-update-message-preview-on-edit' of https://github.com/whipermr5/webogram into whipermr5-1177-update-message-preview-on-edit
This commit is contained in:
commit
64d1d4ed7e
@ -3039,10 +3039,10 @@ angular.module('myApp.services')
|
|||||||
messagesForHistory[mid] = wasForHistory
|
messagesForHistory[mid] = wasForHistory
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var foundDialog = getDialogByPeerID(peerID)[0]
|
||||||
|
var isTopMessage = foundDialog && foundDialog.top_message == mid
|
||||||
if (message.clear_history) {
|
if (message.clear_history) {
|
||||||
var foundDialog = getDialogByPeerID(peerID)
|
if (isTopMessage) {
|
||||||
if (foundDialog[0] &&
|
|
||||||
foundDialog[0].top_message == mid) {
|
|
||||||
$rootScope.$broadcast('dialog_flush', {peerID: peerID})
|
$rootScope.$broadcast('dialog_flush', {peerID: peerID})
|
||||||
} else {
|
} else {
|
||||||
$rootScope.$broadcast('history_delete', {peerID: peerID, msgs: [mid]})
|
$rootScope.$broadcast('history_delete', {peerID: peerID, msgs: [mid]})
|
||||||
@ -3053,6 +3053,11 @@ angular.module('myApp.services')
|
|||||||
id: message.id,
|
id: message.id,
|
||||||
mid: mid
|
mid: mid
|
||||||
})
|
})
|
||||||
|
if (isTopMessage) {
|
||||||
|
var updatedDialogs = {}
|
||||||
|
updatedDialogs[peerID] = foundDialog
|
||||||
|
$rootScope.$broadcast('dialogs_multiupdate', updatedDialogs)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user