aboutsummaryrefslogtreecommitdiff
path: root/ext/js/background
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2022-05-28 22:22:15 -0400
committerGitHub <noreply@github.com>2022-05-28 22:22:15 -0400
commit47194926f35d0d6abfe9a8424c5e8af882a99f1e (patch)
tree9e16acbf8ae3d716dc505c9503ee8bad3fe0a13e /ext/js/background
parent0d82c52a7624d80ec48dc774fb23db5244bc14f9 (diff)
Add an issues page with information about some errors (#2163)
Diffstat (limited to 'ext/js/background')
-rw-r--r--ext/js/background/backend.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/js/background/backend.js b/ext/js/background/backend.js
index c0f286f8..cff8a586 100644
--- a/ext/js/background/backend.js
+++ b/ext/js/background/backend.js
@@ -1909,7 +1909,10 @@ class Backend {
// The message logged to the console looks like this:
// Access to fetch at '<URL>' from origin 'chrome-extension://<ID>' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
const result = new Error('Audio download failed due to possible extension permissions error');
- result.data = {errors};
+ result.data = {
+ errors,
+ referenceUrl: '/issues.html'
+ };
return result;
}
}