mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 19:05:59 +01:00
added debugModeEnabled option
This commit is contained in:
@@ -155,10 +155,14 @@ async function consumeSyncData() {
|
||||
catch (e) {
|
||||
logError(`Encountered error ${e.message}: ${e.stack}, reloading frontend.`);
|
||||
|
||||
if (!glob.isDev && !options.is('debugModeEnabled')) {
|
||||
// if there's an error in updating the frontend then the easy option to recover is to reload the frontend completely
|
||||
if (!glob.isDev) {
|
||||
|
||||
utils.reloadApp();
|
||||
}
|
||||
else {
|
||||
alert("Encountered error, check out the console.");
|
||||
}
|
||||
}
|
||||
|
||||
for (const syncRow of nonProcessedSyncRows) {
|
||||
|
||||
@@ -87,7 +87,8 @@ const defaultOptions = [
|
||||
{ name: 'hideIncludedImages_main', value: 'true', isSynced: false },
|
||||
{ name: 'attributeListExpanded', value: 'false', isSynced: false },
|
||||
{ name: 'promotedAttributesExpanded', value: 'true', isSynced: true },
|
||||
{ name: 'similarNotesExpanded', value: 'true', isSynced: true }
|
||||
{ name: 'similarNotesExpanded', value: 'true', isSynced: true },
|
||||
{ name: 'debugModeEnabled', value: 'false', isSynced: false }
|
||||
];
|
||||
|
||||
function initStartupOptions() {
|
||||
|
||||
Reference in New Issue
Block a user