mirror of https://github.com/procxx/kepka.git
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:
parent
dd003ffb7d
commit
ae75810cd5
|
@ -823,10 +823,10 @@ void HistoryItem::setId(MsgId newId) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool HistoryItem::canPin() const {
|
bool HistoryItem::canPin() const {
|
||||||
if (id < 0 || !_history->peer->isMegagroup() || !toHistoryMessage()) {
|
if (id < 0 || !toHistoryMessage()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (auto channel = _history->peer->asMegagroup()) {
|
if (auto channel = _history->peer->asChannel()) {
|
||||||
return channel->canPinMessages();
|
return channel->canPinMessages();
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue