Skip to content

Commit

Permalink
Merge pull request #10 from afzalshk/Afzal-Dev
Browse files Browse the repository at this point in the history
crash fixation
  • Loading branch information
vasily-popov authored Jan 26, 2020
2 parents 804d3d7 + 27157d7 commit 17e495d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Source/VPSocketIOClient.m
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ -(void)handleEvent:(NSString*)event
anyHandler([[VPSocketAnyEvent alloc] initWithEvent: event andItems: data]);
}

for (VPSocketEventHandler *hdl in _handlers)
for (VPSocketEventHandler *hdl in [_handlers copy])
{
if([hdl.event isEqualToString: event])
{
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

0 comments on commit 17e495d

Please sign in to comment.