Disable cache of assets loader

This commit is contained in:
Cohee
2023-10-15 16:16:35 +03:00
parent 19363f6cb9
commit b4c3985b61

View File

@@ -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 => {