2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-05 17:15:16 +00:00

Fix forwarded names in saved messages export.

This commit is contained in:
John Preston
2018-06-28 18:25:21 +01:00
parent efb3e92525
commit b0baf75fdd
5 changed files with 19 additions and 4 deletions

View File

@@ -340,6 +340,9 @@ QByteArray SerializeMessage(
if (message.forwardedFromId) {
push("Forwarded from", wrapPeerName(message.forwardedFromId));
}
if (message.savedFromChatId) {
push("Saved from", wrapPeerName(message.savedFromChatId));
}
pushReplyToMsgId();
if (message.viaBotId) {
push("Via", user(message.viaBotId).username);