From 74d064f7351aff265dece2092e448de311ab1bf3 Mon Sep 17 00:00:00 2001 From: PhilReact Date: Tue, 17 Jun 2025 14:48:15 +0300 Subject: [PATCH] fix inviteToGroup error message --- src/background.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/background.ts b/src/background.ts index 345acd2..69a2ef9 100644 --- a/src/background.ts +++ b/src/background.ts @@ -2472,7 +2472,7 @@ export async function inviteToGroup({ groupId, qortalAddress, inviteTime }) { const res = await processTransactionVersion2(signedBytes); 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; }