ソースを参照

Fixed bug in IRCClientSession join method

master
Said Achmiz 9年前
コミット
9333d0d477
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      IRCClient/IRCClientSession.m

+ 1
- 1
IRCClient/IRCClientSession.m ファイルの表示

@@ -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);
}

読み込み中…
キャンセル
保存