taler-typescript-core

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

commit 3c85a0d14ee279d529ab50afa3b375ec41880466
parent 7523dcab95f6b5fe0c0f3f8f6b9bede67297bc8a
Author: Florian Dold <florian.dold@gmail.com>
Date:   Sat, 28 Dec 2019 16:21:21 +0100

error handling

Diffstat:
Msrc/webex/wxApi.ts | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/webex/wxApi.ts b/src/webex/wxApi.ts @@ -85,6 +85,10 @@ async function callBackend<T extends MessageType>( ): Promise<MessageMap[T]["response"]> { return new Promise<MessageMap[T]["response"]>((resolve, reject) => { chrome.runtime.sendMessage({ type, detail }, (resp) => { + if (chrome.runtime.lastError) { + console.log("Error calling backend"); + reject(new Error(`Error contacting backend: chrome.runtime.lastError.message`)); + } if (typeof resp === "object" && resp && resp.error) { console.warn("response error:", resp) const e = new WalletApiError(resp.error.message, resp.error);