From 4e422b3bed998642cb970f191f5d357b082c1cb6 Mon Sep 17 00:00:00 2001 From: pajlada Date: Sat, 22 Jan 2022 21:07:19 +0100 Subject: [PATCH] Fix /streamlink command usage message (#3536) --- src/controllers/commands/CommandController.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/controllers/commands/CommandController.cpp b/src/controllers/commands/CommandController.cpp index 21e19217..02385e47 100644 --- a/src/controllers/commands/CommandController.cpp +++ b/src/controllers/commands/CommandController.cpp @@ -663,9 +663,9 @@ void CommandController::initialize(Settings &, Paths &paths) (!channel->isTwitchChannel() || channel->isEmpty())) { channel->addMessage(makeSystemMessage( - "Usage: /streamlink . You can also use the " - "command without arguments in any Twitch channel to open " - "it in streamlink.")); + "/streamlink [channel]. Open specified Twitch channel in " + "streamlink. If no channel argument is specified, open the " + "current Twitch channel instead.")); return ""; }