mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	always autofix note_contents.content = NULL sync issue after note erasion
This commit is contained in:
		
							
								
								
									
										3
									
								
								.idea/dataSources.xml
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										3
									
								
								.idea/dataSources.xml
									
									
									
										generated
									
									
									
								
							| @@ -6,9 +6,6 @@ | ||||
|       <synchronize>true</synchronize> | ||||
|       <jdbc-driver>org.sqlite.JDBC</jdbc-driver> | ||||
|       <jdbc-url>jdbc:sqlite:$PROJECT_DIR$/../trilium-data/document.db</jdbc-url> | ||||
|       <driver-properties> | ||||
|         <property name="enable_load_extension" value="true" /> | ||||
|       </driver-properties> | ||||
|     </data-source> | ||||
|   </component> | ||||
| </project> | ||||
							
								
								
									
										2
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										2
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							| @@ -1,6 +1,6 @@ | ||||
| { | ||||
|   "name": "trilium", | ||||
|   "version": "0.40.2", | ||||
|   "version": "0.40.3", | ||||
|   "lockfileVersion": 1, | ||||
|   "requires": true, | ||||
|   "dependencies": { | ||||
|   | ||||
| @@ -323,14 +323,25 @@ class ConsistencyChecks { | ||||
|                     WHERE isErased = 1 | ||||
|                       AND content IS NOT NULL`, | ||||
|             async ({noteId}) => { | ||||
|             if (this.autoFix) { | ||||
|  | ||||
|             // we always fix this issue because there does not seem to be a good way to prevent it. | ||||
|             // Scenario in which this can happen: | ||||
|             // 1. user on instance A deletes the note (sync for notes is created, but not for note_contents) and is later erased | ||||
|             // 2. instance B gets synced from instance A, note is updated because of sync row for notes, | ||||
|             //    but note_contents is not because erasion does not create sync rows | ||||
|             // 3. therefore note.isErased = true, but note_contents.content remains not updated and not erased. | ||||
|             // | ||||
|             // Considered solutions: | ||||
|             // - don't sync erased notes - this might prevent syncing also of the isDeleted flag and note would continue | ||||
|             //   to exist on the other instance | ||||
|             // - create sync rows for erased event - this would be a problem for undeletion since erasion might happen | ||||
|             //   on one instance after undelete and thus would win even though there's no user action behind it | ||||
|             // | ||||
|             // So instead we just fix such cases afterwards here. | ||||
|  | ||||
|             await sql.execute(`UPDATE note_contents SET content = NULL WHERE noteId = ?`, [noteId]); | ||||
|  | ||||
|             logFix(`Note ${noteId} content has been set to null since the note is erased`); | ||||
|             } | ||||
|             else { | ||||
|                 logError(`Note ${noteId} content is not null even though the note is erased`); | ||||
|             } | ||||
|         }); | ||||
|  | ||||
|         await this.findAndFixIssues(` | ||||
|   | ||||
| @@ -599,6 +599,7 @@ async function eraseDeletedNotes() { | ||||
|         UPDATE notes  | ||||
|         SET title = '[deleted]', | ||||
|             contentLength = 0, | ||||
|             isProtected = 0, | ||||
|             isErased = 1 | ||||
|         WHERE noteId IN (???)`, noteIdsToErase); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user