fix inviteToGroup error message

This commit is contained in:
PhilReact 2025-06-17 14:48:15 +03:00
parent 1482a8ed60
commit 74d064f735

View File

@ -2472,7 +2472,7 @@ export async function inviteToGroup({ groupId, qortalAddress, inviteTime }) {
const res = await processTransactionVersion2(signedBytes); const res = await processTransactionVersion2(signedBytes);
if (!res?.signature) if (!res?.signature)
throw new Error("Transaction was not able to be processed"); throw new Error(res?.message || "Transaction was not able to be processed");
return res; return res;
} }