(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

@ -55,8 +55,8 @@ function AddConversationButton() {
}
// user existence check
const user = await send("get_user_data", {
username: result.data,
const user = await send("GetUserData", {
Username: result.data,
})
.then((data) => {
if (data.data.UserId === 0) {
@ -80,7 +80,7 @@ function AddConversationButton() {
// add the conv
const timeout = setTimeout(() => setLoading(true), 500);
send("add_conversation", {
send("AddConversation", {
ChatPartnerName: result.data,
})
.then(() => {