mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	fixing consistency checks
This commit is contained in:
		| @@ -2,7 +2,6 @@ | ||||
|  | ||||
| const optionService = require('../../services/options'); | ||||
| const log = require('../../services/log'); | ||||
| const attributes = require('../../services/attributes'); | ||||
| const searchService = require('../../services/search/services/search'); | ||||
|  | ||||
| // options allowed to be updated directly in options dialog | ||||
|   | ||||
| @@ -469,26 +469,17 @@ class ConsistencyChecks { | ||||
|             WHERE  | ||||
|               entity_changes.id IS NULL`, | ||||
|             ({entityId}) => { | ||||
|                 const entity = sql.getRow(`SELECT * FROM ${entityName} WHERE ${key} = ?`, [entityId]); | ||||
|  | ||||
|                 if (this.autoFix) { | ||||
|                     if (entityName === 'note_contents' || entityName === 'note_revision_contents') { | ||||
|                         const entity = entityName === 'note_contents' | ||||
|                             ? becca.getNote(entityId) | ||||
|                             : becca.getNoteRevision(entityId); | ||||
|  | ||||
|                         entity.setContent(entity.getContent(), true); | ||||
|                     } | ||||
|                     else { | ||||
|                         const entity = becca.getEntity(entityName, entityId); | ||||
|  | ||||
|                         entityChangesService.addEntityChange({ | ||||
|                             entityName, | ||||
|                             entityId, | ||||
|                             hash: entity.generateHash(), | ||||
|                             isErased: false, | ||||
|                             utcDateChanged: entity.getUtcDateChanged(), | ||||
|                             isSynced: entityName !== 'options' || entity.isSynced | ||||
|                         }); | ||||
|                     } | ||||
|                     entityChangesService.addEntityChange({ | ||||
|                         entityName, | ||||
|                         entityId, | ||||
|                         hash: utils.randomString(10), // doesn't matter, will force sync but that's OK | ||||
|                         isErased: !!entity.isErased, | ||||
|                         utcDateChanged: entity.utcDateModified || entity.utcDateCreated, | ||||
|                         isSynced: entityName !== 'options' || entity.isSynced | ||||
|                     }); | ||||
|  | ||||
|                     logFix(`Created missing entity change for entityName=${entityName}, entityId=${entityId}`); | ||||
|                 } else { | ||||
|   | ||||
| @@ -52,11 +52,6 @@ async function createMainWindow() { | ||||
|  | ||||
|     const {BrowserWindow} = require('electron'); // should not be statically imported | ||||
|  | ||||
|     const nativeImage = require('electron').nativeImage | ||||
|  | ||||
|     const image = nativeImage.createFromPath(getIcon()) | ||||
|     console.log(image) | ||||
|  | ||||
|     mainWindow = new BrowserWindow({ | ||||
|         x: mainWindowState.x, | ||||
|         y: mainWindowState.y, | ||||
| @@ -70,7 +65,7 @@ async function createMainWindow() { | ||||
|             spellcheck: spellcheckEnabled | ||||
|         }, | ||||
|         frame: optionService.getOptionBool('nativeTitleBarVisible'), | ||||
|         icon: image | ||||
|         icon: getIcon() | ||||
|     }); | ||||
|  | ||||
|     mainWindowState.manage(mainWindow); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user