commit d84dadfe2787b4d4891010fee58fe2692fde9a25 parent 0844d41f70edbcdbce0d027be74320d0f54ef987 Author: Florian Dold <dold@taler.net> Date: Thu, 6 Aug 2026 14:21:30 +0200 wallet-core: notify when only the working flag of a transaction changes Such a transition was suppressed, so nobody waiting on the flag would ever wake up. Diffstat:
| M | packages/taler-wallet-core/src/transactions.ts | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/packages/taler-wallet-core/src/transactions.ts b/packages/taler-wallet-core/src/transactions.ts @@ -1040,7 +1040,9 @@ export function applyNotifyTransition( !( transitionInfo.oldStId === transitionInfo.newStId && transitionInfo.oldTxState.major === transitionInfo.newTxState.major && - transitionInfo.oldTxState.minor === transitionInfo.newTxState.minor + transitionInfo.oldTxState.minor === transitionInfo.newTxState.minor && + !!transitionInfo.oldTxState.working === + !!transitionInfo.newTxState.working ) ) { notify({