Skip to content

Commit

Permalink
Added missing return statement to bool TwitchIRC::sendChat
Browse files Browse the repository at this point in the history
  • Loading branch information
SarahKirksey committed May 5, 2021
1 parent 79ff02a commit 54a8d5b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions TwitchIRC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ bool TwitchIRC::sendChat(const char *msg, const char *channel)
string c = channel;
string s = "PRIVMSG #" + c + " :"+msg + "\r\n";
sendData(s.c_str());
return false;
}

void TwitchIRC::msgHandle(char * buf)
Expand Down

0 comments on commit 54a8d5b

Please sign in to comment.