Skip to content

Commit

Permalink
[irc] Fixed small issue found by PVS. See #398
Browse files Browse the repository at this point in the history
  • Loading branch information
nico-izo committed Jan 6, 2017
1 parent 4422122 commit 6c8bb7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/protocols/irc/src/ircstandartctcphandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ void IrcStandartCtcpHandler::handleCtcpResponse(IrcAccount *account, const QStri
.arg(diff, 0, 'f', 3),
true, "CTCP");
}
} else if (cmd == "CLIENTINFO" || cmd == "VERSION" || "TIME") {
} else if (cmd == "CLIENTINFO" || cmd == "VERSION" || cmd == "TIME") {
account->log(tr("Received CTCP-%1 reply from %2: %3")
.arg(cmd)
.arg(sender)
Expand Down

0 comments on commit 6c8bb7c

Please sign in to comment.