From 9126859679760c62eb4cdd6b54eea2ca80e5a6b5 Mon Sep 17 00:00:00 2001 From: Brendan Coles Date: Wed, 8 Apr 2020 09:52:54 +0000 Subject: [PATCH] IRCClient: Rename /hop command to /cycle Some IRC clients use /hop to part and re-join a channel; however this can be confused with granting half-op (+h) channel privileges to a user. The general convention used by other IRC clients is /cycle. --- Applications/IRCClient/IRCClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/IRCClient/IRCClient.cpp b/Applications/IRCClient/IRCClient.cpp index 9cec8fe30c..a2da80d042 100644 --- a/Applications/IRCClient/IRCClient.cpp +++ b/Applications/IRCClient/IRCClient.cpp @@ -850,7 +850,7 @@ void IRCClient::handle_user_command(const String& input) } return; } - if (command == "/HOP") { + if (command == "/CYCLE") { if (parts.size() >= 2) { auto channel = parts[1]; part_channel(channel);