This website works better with JavaScript.
Home
Explore
Help
Sign In
achmizs
/
IRCClient
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fixed bug in IRCClientSession join method
master
Said Achmiz
9 years ago
parent
5fa3aed5da
commit
9333d0d477
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
1
1
IRCClient/IRCClientSession.m
+ 1
- 1
IRCClient/IRCClientSession.m
View File
@@ -255,7 +255,7 @@ static NSDictionary* ircNumericCodeList;
- (int)join:(NSData *)channel key:(NSData *)key
{
if (!key || !key.length > 0)
if (!key || !
(
key.length > 0)
)
{
return irc_cmd_join(_irc_session, channel.SA_terminatedCString, NULL);
}
Write
Preview
Loading…
Cancel
Save