taler-typescript-core

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

commit 9c479e2a0d6fcdee72084af56d82efa1e73ef73a
parent 2d267aac87997ee8aa3b4a820077cb7e1f855f10
Author: Florian Dold <florian@dold.me>
Date:   Sat, 18 Jul 2026 17:38:34 +0200

indexeddb: fix key injection in nested key paths

Diffstat:
Mpackages/idb-bridge/src/util/makeStoreKeyValue.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/idb-bridge/src/util/makeStoreKeyValue.ts b/packages/idb-bridge/src/util/makeStoreKeyValue.ts @@ -58,7 +58,7 @@ function injectKey( throw new Error("can't inject key"); } - const hop = value.hasOwnProperty(identifier); + const hop = ptr.hasOwnProperty(identifier); if (!hop) { ptr[identifier] = {}; }