Приведение chacha_key_plain к hex для транспортировки

This commit is contained in:
RoyceDa
2026-03-28 17:20:03 +02:00
parent 81f5e66c56
commit f5bfa153b6
2 changed files with 5 additions and 3 deletions

View File

@@ -52,6 +52,7 @@ export function useReplyMessages() {
*/
return;
}
message.chacha_key_plain = Buffer.from(message.chacha_key_plain).toString('hex');
replyMessages.messages.push(message);
const sortedByTime = replyMessages.messages.sort((a, b) => a.timestamp - b.timestamp);