aboutsummaryrefslogtreecommitdiff
path: root/content_scripts
diff options
context:
space:
mode:
Diffstat (limited to 'content_scripts')
-rw-r--r--content_scripts/notify.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/content_scripts/notify.ts b/content_scripts/notify.ts
index 978e7e9a0..abc72616c 100644
--- a/content_scripts/notify.ts
+++ b/content_scripts/notify.ts
@@ -217,11 +217,15 @@ namespace TalerNotify {
};
chrome.runtime.sendMessage(walletMsg, (resp) => {
+ if (resp.rateLimitExceeded) {
+ console.error("rate limit exceeded, check for redirect loops");
+ }
+
if (!resp.success) {
if (msg.offering_url) {
window.location.href = msg.offering_url;
} else {
- console.error("execute-payment failed");
+ console.error("execute-payment failed", resp);
}
return;
}