We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8be5ffd commit 21c1e5eCopy full SHA for 21c1e5e
src/plugin.js
@@ -19,7 +19,7 @@ function getContentAsync(contentURL) {
19
return decodeURIComponent(escape(atob(response.content)));
20
});
21
} else {
22
- return fetch(contentURL).then(function(response) {
+ return fetch(contentURL, { credentials: "same-origin" }).then(function(response) {
23
return response.text();
24
25
}
0 commit comments