chat: fix unsigned encoding for changed messages

This commit is contained in:
RoccoDev
2022-12-07 19:51:12 +01:00
parent b1fa9dc953
commit 3ae3af45bc

View File

@@ -54,6 +54,7 @@ public class SessionChatBuilder extends ChatBuilderV2 {
chat.signature = new byte[0]; chat.signature = new byte[0];
chat.timestamp = timestamp; chat.timestamp = timestamp;
chat.salt = 0L; chat.salt = 0L;
chat.lastSeenMessages = new LastSeenMessages();
return chat; return chat;
} }
} }