Compare commits

..

1 Commits

Author SHA1 Message Date
FinnHornhoover
bfaad6e098
Merge 8f05ace344 into ec0fc87dcd 2023-11-13 01:12:16 +03:00
2 changed files with 5 additions and 8 deletions

View File

@ -294,7 +294,7 @@ function restoreDefaultVersions() {
}
function editConfig() {
var jsonToModify = JSON.parse(remotefs.readFileSync(configPath));
var jsonToModify = JSON.parse(remotefs.readJsonSync(configPath));
jsonToModify["autoupdate-check"] = $("#editconfig-autoupdate").prop("checked");
jsonToModify["cache-swapping"] = $("#editconfig-cacheswapping").prop("checked");
@ -302,17 +302,14 @@ function editConfig() {
jsonToModify["verify-offline-cache"] = $("#editconfig-verifyofflinecache").prop("checked");
var dirInput = $("#editconfig-offlinecachelocation:text").val();
var shouldChangeRoot = (
jsonToModify["offline-cache-location"] = (
remotefs.existsSync(dirInput) &&
remotefs.statSync(dirInput).isDirectory()
);
jsonToModify["offline-cache-location"] = shouldChangeRoot ? dirInput : offlineRoot;
) ? dirInput : offlineRoot;
remotefs.writeFileSync(configPath, JSON.stringify(jsonToModify, null, 4));
loadConfig();
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="validateCacheLocation()"
oninput="validateCacheLocator()"
/>
</form>
</div>