Disable cache of assets loader
This commit is contained in:
parent
19363f6cb9
commit
b4c3985b61
|
@ -29,7 +29,7 @@ const defaultSettings = {
|
|||
|
||||
function downloadAssetsList(url) {
|
||||
updateCurrentAssets().then(function () {
|
||||
fetch(url)
|
||||
fetch(url, { cache: "no-cache" })
|
||||
.then(response => response.json())
|
||||
.then(json => {
|
||||
|
||||
|
|
Loading…
Reference in New Issue