From dd3359a58077c3b3bc9f772b71fdf4907cb5b785 Mon Sep 17 00:00:00 2001 From: PhilReact Date: Tue, 17 Jun 2025 14:48:01 +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 f36954e..d74d3e4 100644 --- a/src/background.ts +++ b/src/background.ts @@ -2900,7 +2900,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; }