Fix sogo-tool when cleaning up devices

This commit is contained in:
Ludovic Marcotte
2014-12-15 19:23:04 -05:00
parent 54dabb6861
commit 9cb1f8097c
+1 -1
View File
@@ -225,7 +225,7 @@ typedef enum
NSMutableString *sql;
sql = [NSMutableString stringWithFormat: @"DELETE FROM %@" @" WHERE c_path like '/%@'", [oc tableName], deviceId];
sql = [NSMutableString stringWithFormat: @"DELETE FROM %@" @" WHERE c_path like '/%@%'", [oc tableName], deviceId];
[oc performBatchSQLQueries: [NSArray arrayWithObject: sql]];
rc = YES;