Fix sogo-tool when cleaning up devices

pull/68/head
Ludovic Marcotte 2014-12-15 19:23:04 -05:00
parent 54dabb6861
commit 9cb1f8097c
1 changed files with 1 additions and 1 deletions

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;