gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated: -oops, obvious missing return


From: gnunet
Subject: [taler-wallet-core] branch master updated: -oops, obvious missing return
Date: Thu, 29 Jun 2023 12:13:56 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository wallet-core.

The following commit(s) were added to refs/heads/master by this push:
     new 424e39edd -oops, obvious missing return
424e39edd is described below

commit 424e39edda96886bfc40c7bb06c5572373c34c1d
Author: Florian Dold <florian@dold.me>
AuthorDate: Thu Jun 29 12:13:52 2023 +0200

    -oops, obvious missing return
---
 packages/idb-bridge/src/util/structuredClone.ts | 1 +
 packages/taler-wallet-core/src/wallet.ts        | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

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,

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]