This commit is contained in:
2018-11-23 16:44:20 +01:00
parent 7658458370
commit e222c6dbfc

View File

@@ -96,7 +96,7 @@ void IrcPlugin::join(String c)
void IrcPlugin::sendMessage(String msg) void IrcPlugin::sendMessage(String msg)
{ {
if (channel) if (checkConfig() && channel)
{ {
client->sendMessage(channel, msg); client->sendMessage(channel, msg);
} }