Skip to content

Commit

Permalink
Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
7imbrook committed Jul 10, 2013
1 parent ea0731e commit ee398ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions LectureConnect.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -480,9 +480,9 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.8;
MACOSX_DEPLOYMENT_TARGET = 10.7;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx10.8;
SDKROOT = macosx10.9;
};
name = Debug;
};
Expand Down Expand Up @@ -513,8 +513,8 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.8;
SDKROOT = macosx10.8;
MACOSX_DEPLOYMENT_TARGET = 10.7;
SDKROOT = macosx10.9;
};
name = Release;
};
Expand Down
2 changes: 1 addition & 1 deletion LectureConnect/SocketRocket/Socket.io/SocketIO.m
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)er
_isConnecting = NO;

if ([_delegate respondsToSelector:@selector(socketIO:onError:)]) {
NSMutableDictionary *errorInfo = [NSDictionary dictionaryWithObject:error forKey:NSLocalizedDescriptionKey];
NSMutableDictionary *errorInfo = [[NSDictionary dictionaryWithObject:error forKey:NSLocalizedDescriptionKey] mutableCopy];

NSError *err = [NSError errorWithDomain:SocketIOError
code:SocketIOHandshakeFailed
Expand Down

0 comments on commit ee398ca

Please sign in to comment.