Fixed msgs grouping after delete

Closes #481
This commit is contained in:
Igor Zhukov 2014-09-23 16:07:24 +04:00
parent 21f78aec89
commit 12a11749b0

View File

@ -1281,9 +1281,8 @@ angular.module('myApp.controllers', ['myApp.i18n'])
} }
}; };
history.messages = newMessages; history.messages = newMessages;
if (AppMessagesManager.regroupWrappedHistory(history.messages)) { AppMessagesManager.regroupWrappedHistory(history.messages);
$scope.$broadcast('messages_regroup'); $scope.$broadcast('messages_regroup');
}
if (historyUpdate.peerID == $scope.curDialog.peerID) { if (historyUpdate.peerID == $scope.curDialog.peerID) {
$scope.state.empty = !newMessages.length; $scope.state.empty = !newMessages.length;
} }