Skip to content

Commit

Permalink
#298 do not implicitly retain
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldart authored Nov 1, 2018
1 parent 041ce77 commit 81d86f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SignalR.Client/Transports/SRServerSentEventsTransport.m
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ - (void)start:(id<SRConnectionInterface>)connection connectionData:(NSString *)c
};
NSError *timeout = [[NSError alloc]initWithDomain:[NSString stringWithFormat:NSLocalizedString(@"com.SignalR.SignalR-ObjC.%@",@""),NSStringFromClass([self class])] code:NSURLErrorTimedOut userInfo:userInfo];
SRLogSSEError(@"serverSentEvents failed to receive initialized message before timeout");
_stop = YES;
strongSelf._stop = YES;
strongSelf.eventSource.opened = nil;
strongSelf.eventSource.message = nil;
strongSelf.eventSource.closed = nil;
Expand Down

0 comments on commit 81d86f6

Please sign in to comment.