Skip to content

Commit

Permalink
Fix JSON response in PhoneGap 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vstirbu committed Dec 27, 2011
1 parent 38cd705 commit bc54801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plugins/PGSQLitePlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ -(void) executeSql: (NSMutableArray*)arguments withDict:(NSMutableDictionary*)op
if (hasInsertId) {
[resultSet setObject:insertId forKey:@"insertId"];
}
[self respond:callback withString:[resultSet JSONRepresentation] withType:@"success"];
[self respond:callback withString:[resultSet JSONString] withType:@"success"];
}
}

Expand Down

0 comments on commit bc54801

Please sign in to comment.