mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-29 06:57:03 +00:00
Fixed: warning notification said "Error parsing…" instead of "Warning parsing…"
I was missing the variable in a test.
This commit is contained in:
@@ -760,7 +760,7 @@ NSArray *XCCDefaultIgnoredPathRegexes = nil;
|
||||
}
|
||||
else
|
||||
{
|
||||
notificationTitle = [(XCCStatusCodeError ? @"Error" : @"Warning") stringByAppendingString:@" parsing Objective-J source"];
|
||||
notificationTitle = [(status == XCCStatusCodeError ? @"Error" : @"Warning") stringByAppendingString:@" parsing Objective-J source"];
|
||||
|
||||
NSArray *errors = [response propertyList];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user