version bump

- new homepage theme inspired by @GraspYonOx
- connect setup also mostly by @GraspYonOx
- some 'fixes' regarding module unloading, hopefully fixing call stack issue
- fixes to wtvshared.isAdmin() to not show log as if it was an access attempt
This commit is contained in:
zefie
2022-11-28 09:51:13 -05:00
parent 203bc73088
commit 12dfd49992
22 changed files with 469 additions and 385 deletions

View File

@@ -307,12 +307,7 @@ var runScriptInVM = function (script_data, user_contextObj = {}, privileged = fa
}
// unload any loaded modules for this vm
if (modules_loaded.length > 0) {
Object.keys(modules_loaded).forEach(function (k) {
wtvshared.unloadModule(modules_loaded[k]);
})
}
modules_loaded = null;
return contextObj; // updated context object with whatever global varibles the script set
}
@@ -1964,6 +1959,7 @@ Object.keys(minisrv_config.services).forEach(function (k) {
}
}
}
})
if (minisrv_config.config.hide_ssid_in_logs) console.log(" * Masking SSIDs in console logs for security");
else console.log(" * Full SSIDs will be shown in console logs");