diff options
Diffstat (limited to 'src/actions')
-rw-r--r-- | src/actions/commands.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index c02d2ef39..c7633972b 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -93,12 +93,9 @@ static std::string getNick(const InputEvent &event) WhisperTab *const whisper = static_cast<WhisperTab* const>(event.tab); if (whisper->getNick().empty()) { - if (event.tab) - { - // TRANSLATORS: change relation - event.tab->chatLog(_("Please specify a name."), - ChatMsgType::BY_SERVER); - } + // TRANSLATORS: change relation + event.tab->chatLog(_("Please specify a name."), + ChatMsgType::BY_SERVER); return std::string(); } args = whisper->getNick(); |