Fix forwarded message original id. Closes #3305.

This commit is contained in:
John Preston 2017-04-21 13:47:39 +03:00
parent 9eea4fcf03
commit da0387a23e
2 changed files with 7 additions and 1 deletions

View File

@ -790,6 +790,12 @@ public:
}
return author();
}
MsgId idOriginal() const {
if (auto fwd = Get<HistoryMessageForwarded>()) {
return fwd->_originalId;
}
return id;
}
// count > 0 - creates the unread bar if necessary and
// sets unread messages count if bar is not freezed yet

View File

@ -457,7 +457,7 @@ HistoryMessage::HistoryMessage(History *history, MsgId id, MTPDmessage::Flags fl
config.authorIdOriginal = fwd->authorOriginal()->id;
config.fromIdOriginal = fwd->fromOriginal()->id;
if (fwd->authorOriginal()->isChannel()) {
config.originalId = fwd->id;
config.originalId = fwd->idOriginal();
}
auto fwdViaBot = fwd->viaBot();
if (fwdViaBot) config.viaBotId = peerToUser(fwdViaBot->id);