semicolons

pull/3018/head
Gordon Williams 2023-09-18 13:42:27 +01:00
parent 92ddfe9403
commit d58c29f8d0
1 changed files with 2 additions and 2 deletions

View File

@ -823,7 +823,7 @@ function showAppSettings(app) {
try {
appSettings = eval(appSettings);
} catch (e) {
console.log(`${app.name} settings error:`, e)
console.log(`${app.name} settings error:`, e);
return showError(/*LANG*/'Error in settings');
}
if (typeof appSettings !== "function") {
@ -833,7 +833,7 @@ function showAppSettings(app) {
// pass showAppSettingsMenu as "back" argument
appSettings(()=>showAppSettingsMenu());
} catch (e) {
console.log(`${app.name} settings error:`, e)
console.log(`${app.name} settings error:`, e);
return showError(/*LANG*/'Error in settings');
}
}