| 
									
										
										
										
											2021-09-08 13:39:14 -07:00
										 |  |  | // Copyright 2021 Signal Messenger, LLC
 | 
					
						
							|  |  |  | // SPDX-License-Identifier: AGPL-3.0-only
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export function isCorruptionError(error?: Error): boolean { | 
					
						
							|  |  |  |   return ( | 
					
						
							|  |  |  |     error?.message?.includes('SQLITE_CORRUPT') || | 
					
						
							|  |  |  |     error?.message?.includes('database disk image is malformed') || | 
					
						
							| 
									
										
										
										
											2021-11-17 22:17:45 +01:00
										 |  |  |     error?.message?.includes('file is not a database') || | 
					
						
							| 
									
										
										
										
											2021-09-08 13:39:14 -07:00
										 |  |  |     false | 
					
						
							|  |  |  |   ); | 
					
						
							|  |  |  | } |