mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
WebController: Fix log bug
The log message wasn't escaped previously, which would mean that %@ code etc would be parsed, and fail.
This commit is contained in:
+1
-1
@@ -51,7 +51,7 @@
|
||||
#pragma mark Functions to be used from JavaScript
|
||||
- (void) log: (NSString*) logMessage
|
||||
{
|
||||
NSLog(logMessage);
|
||||
NSLog(@"%@", logMessage);
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
Reference in New Issue
Block a user