mirror of https://github.com/procxx/kepka.git
Fix video timestamps in replies when editing.
This commit is contained in:
parent
5aee0f642a
commit
4f71383557
|
@ -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…
Reference in New Issue