taler-typescript-core

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

commit cb0d890e2cd02f63ea50bc6bc38fff0342518d40
parent 6ae996e78eba29c4aaf19a347dccddf8003441ee
Author: Sebastian <sebasjm@gmail.com>
Date:   Sat, 21 Jun 2025 12:44:36 -0300

fix FTBFS

Diffstat:
Mpackages/taler-wallet-webextension/src/wxBackend.ts | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/packages/taler-wallet-webextension/src/wxBackend.ts b/packages/taler-wallet-webextension/src/wxBackend.ts @@ -462,6 +462,9 @@ async function reinitWallet(): Promise<void> { const wallet = await Wallet.create( { idbFactory: indexedDB as any as BridgeIDBFactory, + readBackupJson(path) { + throw Error("DB file export not supported for platform webext"); + }, exportToFile() { throw Error("DB file export not supported for platform webext"); },