Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions SocketRocket/SocketRocket/ARTSRWebSocket.m
Original file line number Diff line number Diff line change
Expand Up @@ -362,9 +362,9 @@ - (void)_connectionDoneWithError:(NSError *)error readStream:(NSInputStream *)re
}
// Schedule to run on a work queue, to make sure we don't run this inline and deallocate `self` inside `ARTSRProxyConnect`.
// TODO: (nlutsenko) Find a better structure for this, maybe Bolts Tasks?
dispatch_async(_workQueue, ^{
self->_proxyConnect = nil;
});
// dispatch_async(_workQueue, ^{
// self->_proxyConnect = nil;
// });
}

- (BOOL)_checkHandshake:(CFHTTPMessageRef)httpMessage;
Expand Down