taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 65cd2a4f582f3b09c3b7ddd42f6d3d28b6e2ea84
parent 80053974364cba21e727b47be52085954a9b0511
Author: Florian Dold <florian@dold.me>
Date:   Sat, 18 Jul 2026 16:43:55 +0200

add missing await in log

Diffstat:
Mpackages/taler-wallet-core/src/refresh.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-wallet-core/src/refresh.ts b/packages/taler-wallet-core/src/refresh.ts @@ -889,7 +889,7 @@ async function handleRefreshMeltConflict( // FIXME: Store the error somewhere in the DB? logger.warn( `Refund request during refresh failed: ${j2s( - readTalerErrorResponse(httpResp), + await readTalerErrorResponse(httpResp), )}`, ); break;