diff options
-rw-r--r-- | content_scripts/notify.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/content_scripts/notify.ts b/content_scripts/notify.ts index ed704aaf0..e4adaa3db 100644 --- a/content_scripts/notify.ts +++ b/content_scripts/notify.ts @@ -283,6 +283,10 @@ namespace TalerNotify { }) }); + addHandler("taler-payment-succeeded", (msg: any, sendResponse: any) => { + sendResponse(); + }); + addHandler("taler-get-payment", (msg: any, sendResponse: any) => { const walletMsg = { type: "execute-payment", @@ -319,4 +323,4 @@ namespace TalerNotify { }); }); } -}
\ No newline at end of file +} |