Add exception handling logic. I did this without using performSelector since it only occurs in a couple of places (it didn't seem worth the effort).

This commit is contained in:
Gregory John Casamento 2020-02-09 19:55:46 -05:00
parent 031868f73e
commit 4ab70420a8
2 changed files with 63 additions and 24 deletions

View file

@ -140,7 +140,7 @@ static int _clients = 0;
- (BOOL) isBlocking: (NSString *)s
{
return [_blocking containsObject: s];
return [[_blocking firstObject] isEqualToString: s];
}
@end