diff options
Diffstat (limited to 'ext/bg/js/request.js')
-rw-r--r-- | ext/bg/js/request.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/bg/js/request.js b/ext/bg/js/request.js index d1c6ed4e..4a455850 100644 --- a/ext/bg/js/request.js +++ b/ext/bg/js/request.js @@ -16,10 +16,10 @@ */ -async function requestText(url, method, data) { +async function requestText(url, method, data, cors=false) { const response = await fetch(url, { method, - mode: 'no-cors', + mode: (cors ? 'cors' : 'no-cors'), cache: 'default', credentials: 'omit', redirect: 'follow', @@ -29,10 +29,10 @@ async function requestText(url, method, data) { return await response.text(); } -async function requestJson(url, method, data) { +async function requestJson(url, method, data, cors=false) { const response = await fetch(url, { method, - mode: 'no-cors', + mode: (cors ? 'cors' : 'no-cors'), cache: 'default', credentials: 'omit', redirect: 'follow', |