(feat): migrate ttp to mtp
Some checks failed
/ build-desktop (linux) (push) Failing after 3m58s
/ build-web (push) Failing after 4m13s
/ build-mobile (push) Failing after 6m34s
/ release (push) Has been skipped

(wip): crypto migration
This commit is contained in:
Alois 2026-07-05 01:43:06 +02:00
commit 930663d495
30 changed files with 559 additions and 749 deletions

View file

@ -72,10 +72,9 @@ export default function InputComponent({
log(3, "chat", "purple", "Message send init, adding live message ...");
const reference = addLiveMessage({
height: 0,
NotEncrypted: true,
SendTime: time,
content: currentValue,
Content: currentValue,
SentBySelf: true,
MessageState: "awaiting",
});
@ -94,9 +93,8 @@ export default function InputComponent({
log(3, "chat", "purple", "Content encrypted, sending message...");
send("message_send", {
height: 0,
content: encryptedContext,
send("MessageSend", {
Content: encryptedContext,
ReceiverId: userId,
SendTime: time,
}).catch((e) => {