Merge remote-tracking branch 'upstream/develop' into feature/next-promotion-info

This commit is contained in:
Nicola Benaglia 2025-06-17 18:47:08 +02:00
commit cbf2d57d4c
2 changed files with 2 additions and 2 deletions

View File

@ -2521,7 +2521,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;
}

View File

@ -1939,7 +1939,7 @@ function setupMessageListenerQortalRequest() {
case 'GET_PRIMARY_NAME': {
try {
const res = await getNameInfoForOthers(request.payload?.address);
const resData = res ? res : null;
const resData = res ? res : '';
event.source.postMessage(
{
requestId: request.requestId,