fix export error for non-unicode numbers (#3444)
This commit is contained in:
		
							parent
							
								
									0e56dd8bc2
								
							
						
					
					
						commit
						15791b732c
					
				|  | @ -192,7 +192,7 @@ public class ExportBackupService extends Service { | |||
|             final String value = cursor.getString(i); | ||||
|             if (value == null) { | ||||
|                 builder.append("NULL"); | ||||
|             } else if (value.matches("\\d+")) { | ||||
|             } else if (value.matches("[0-9]+")) { | ||||
|                 builder.append(value); | ||||
|             } else { | ||||
|                 DatabaseUtils.appendEscapedSQLString(builder, value); | ||||
|  | @ -349,4 +349,4 @@ public class ExportBackupService extends Service { | |||
|             return builder.build(); | ||||
|         } | ||||
|     } | ||||
| } | ||||
| } | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 ialokim
						ialokim