gnunet-svn
[Top][All Lists]
Advanced

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

[taler-wallet-core] branch master updated: fix build error from rename


From: gnunet
Subject: [taler-wallet-core] branch master updated: fix build error from rename
Date: Tue, 09 Feb 2021 19:40:28 +0100

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 58ef1e13 fix build error from rename
58ef1e13 is described below

commit 58ef1e13df9b101dde9ece2f67344dc5a6ba8e91
Author: Florian Dold <florian@dold.me>
AuthorDate: Tue Feb 9 19:40:24 2021 +0100

    fix build error from rename
---
 packages/taler-wallet-core/src/util/query.ts | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/packages/taler-wallet-core/src/util/query.ts 
b/packages/taler-wallet-core/src/util/query.ts
index 71c809ec..d0b8c2ef 100644
--- a/packages/taler-wallet-core/src/util/query.ts
+++ b/packages/taler-wallet-core/src/util/query.ts
@@ -106,7 +106,7 @@ function transactionToPromise(tx: IDBTransaction): 
Promise<void> {
     };
     tx.onerror = () => {
       console.error("Transaction failed:", stack);
-      reject(tx._error);
+      reject(tx.error);
     };
   });
 }
@@ -394,8 +394,8 @@ function runWithTransaction<T, StoreTypes extends 
Store<string, {}>>(
       logger.error(`${stack}`);
     };
     tx.onabort = () => {
-      if (tx._error) {
-        logger.error("Transaction aborted with error:", tx._error);
+      if (tx.error) {
+        logger.error("Transaction aborted with error:", tx.error);
       } else {
         logger.error("Trasaction aborted (no error)");
       }

-- 
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]