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.
2 parents b2e12ef + 83de02f commit 460b7b5Copy full SHA for 460b7b5
src/tabs/presets/PresetsRepoIndexed/PresetsRepoIndexed.js
@@ -12,7 +12,7 @@ class PresetsRepoIndexed {
12
}
13
14
loadIndex() {
15
- return fetch(this._urlRaw + "index.json")
+ return fetch(this._urlRaw + "index.json", {cache: "no-cache"})
16
.then(res => res.json())
17
.then(out => this._index = out);
18
@@ -205,7 +205,7 @@ class PresetsRepoIndexed {
205
206
_loadPresetText(fullUrl) {
207
return new Promise((resolve, reject) => {
208
- fetch(fullUrl)
+ fetch(fullUrl, {cache: "no-cache"})
209
.then(res => res.text())
210
.then(text => resolve(text))
211
.catch(err => {
0 commit comments