Compare commits

...

2 Commits

Author SHA1 Message Date
FinnHornhoover 51f0c06092 fixed config json read, limited hash check 2023-11-13 23:06:38 +03:00
FinnHornhoover 695fcaebb6 fixed valdator function name 2023-11-13 22:43:58 +03:00
2 changed files with 3 additions and 3 deletions

View File

@ -294,7 +294,7 @@ function restoreDefaultVersions() {
}
function editConfig() {
var jsonToModify = JSON.parse(remotefs.readJsonSync(configPath));
var jsonToModify = JSON.parse(remotefs.readFileSync(configPath));
jsonToModify["autoupdate-check"] = $("#editconfig-autoupdate").prop("checked");
jsonToModify["cache-swapping"] = $("#editconfig-cacheswapping").prop("checked");
@ -312,7 +312,7 @@ function editConfig() {
remotefs.writeFileSync(configPath, JSON.stringify(jsonToModify, null, 4));
loadConfig();
if (shouldChangeRoot) handleCache("hash-check");
if (shouldChangeRoot) handleCache("hash-check", null, "offline");
}
function validateCacheLocation() {

View File

@ -536,7 +536,7 @@
class="form-control form-row w-75"
id="editconfig-offlinecachelocation"
type="text"
oninput="validateCacheLocator()"
oninput="validateCacheLocation()"
/>
</form>
</div>