Merge pull request #897 from RoccoDev/fix/1.19.3-unsigned-encode

chat: fix encoding for changed unsigned messages
This commit is contained in:
Corey Shupe
2022-12-07 13:57:40 -05:00
committed by GitHub

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;
} }
} }