Browse Source

Fixed an index/safety check.

release/0.19
JustinAJ 10 years ago
parent
commit
09c9081bf9
  1. 2
      Jupiter/IRC_Client.cpp

2
Jupiter/IRC_Client.cpp

@ -429,7 +429,7 @@ Jupiter::IRC::Client::Channel *Jupiter::IRC::Client::getChannel(unsigned int ind
Jupiter::IRC::Client::Channel *Jupiter::IRC::Client::getChannel(const char *chanName) const
{
unsigned int index = Jupiter::IRC::Client::getChannelIndex(chanName);
int index = Jupiter::IRC::Client::getChannelIndex(chanName);
if (index < 0) return nullptr;
return Jupiter::IRC::Client::getChannel(index);
}

Loading…
Cancel
Save