This commit is contained in:
Igor Zhukov 2018-01-07 16:02:05 +04:00
parent 0cb4a8dec4
commit 2a406f1300
2 changed files with 2 additions and 2 deletions

View File

@ -2512,7 +2512,7 @@ angular.module('myApp.controllers', ['myApp.i18n'])
return ids
})
var chatParticipantsPromise
if (peerID < 0) {
if (peerID < 0 && !AppPeersManager.isBroadcast(peerID)) {
if (AppPeersManager.isChannel(peerID)) {
chatParticipantsPromise = AppProfileManager.getChannelParticipants(-peerID)
} else {

View File

@ -682,11 +682,11 @@ angular.module('myApp.directives', ['myApp.filters'])
$scope.pinnedMessageID = 0
$scope.$emit('ui_height')
}
var jump = ++$scope.jump
if (!AppPeersManager.isChannel(peerID)) {
return
}
var channelID = -peerID
var jump = ++$scope.jump
AppProfileManager.getChannelPinnedMessage(channelID).then(function (pinnedMessageID) {
if (jump != $scope.jump) {
return