mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +02:00
Fix video timestamps in replies when editing.
This commit is contained in:
parent
5aee0f642a
commit
4f71383557
1 changed files with 1 additions and 0 deletions
|
@ -91,6 +91,7 @@ struct HistoryMessageReply : public RuntimeComponent<HistoryMessageReply, Histor
|
||||||
HistoryMessageReply &operator=(const HistoryMessageReply &other) = delete;
|
HistoryMessageReply &operator=(const HistoryMessageReply &other) = delete;
|
||||||
HistoryMessageReply &operator=(HistoryMessageReply &&other) {
|
HistoryMessageReply &operator=(HistoryMessageReply &&other) {
|
||||||
replyToMsgId = other.replyToMsgId;
|
replyToMsgId = other.replyToMsgId;
|
||||||
|
replyToDocumentId = other.replyToDocumentId;
|
||||||
std::swap(replyToMsg, other.replyToMsg);
|
std::swap(replyToMsg, other.replyToMsg);
|
||||||
replyToLnk = std::move(other.replyToLnk);
|
replyToLnk = std::move(other.replyToLnk);
|
||||||
replyToName = std::move(other.replyToName);
|
replyToName = std::move(other.replyToName);
|
||||||
|
|
Loading…
Add table
Reference in a new issue