diff --git a/packages/idb-bridge/src/util/structuredClone.ts b/packages/idb-bridge/src/util/structuredClone.ts index a3842b8c4..2170118d5 100644 --- a/packages/idb-bridge/src/util/structuredClone.ts +++ b/packages/idb-bridge/src/util/structuredClone.ts @@ -438,6 +438,7 @@ export function applyLegacyTypeAnnotations(val: any): any { export function internalStructuredRevive(val: any): any { // FIXME: Do the newly specified, compositional encoding here. val = JSON.parse(JSON.stringify(val)); + return val; } export function structuredRevive(val: any): any { diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts index df4fd0d94..c72c7236f 100644 --- a/packages/taler-wallet-core/src/wallet.ts +++ b/packages/taler-wallet-core/src/wallet.ts @@ -1575,7 +1575,7 @@ export async function handleCoreApiRequest( }; } catch (e: any) { const err = getErrorDetailFromException(e); - logger.info(`finished wallet core request with error: ${j2s(err)}`); + logger.info(`finished wallet core request ${operation} with error: ${j2s(err)}`); return { type: "error", operation,