HistoryItem: enable pins for channel messages

Now we can pin and unpin channel messages.

This commit is based on upstream commit
75d8d01b17

Related to #8, #114.
This commit is contained in:
leha-bot 2018-09-17 04:53:15 +03:00 committed by Alex
parent dd003ffb7d
commit ae75810cd5
1 changed files with 2 additions and 2 deletions

View File

@ -823,10 +823,10 @@ void HistoryItem::setId(MsgId newId) {
}
bool HistoryItem::canPin() const {
if (id < 0 || !_history->peer->isMegagroup() || !toHistoryMessage()) {
if (id < 0 || !toHistoryMessage()) {
return false;
}
if (auto channel = _history->peer->asMegagroup()) {
if (auto channel = _history->peer->asChannel()) {
return channel->canPinMessages();
}
return false;