From ff53b7cc977cca1db9fb4ff4311d48fac11d6b3a Mon Sep 17 00:00:00 2001 From: Lucas K Date: Tue, 14 Feb 2023 22:27:33 +0100 Subject: [PATCH] Fix inconsistent separator usage in command failure messages (#4379) --- src/controllers/commands/CommandController.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/controllers/commands/CommandController.cpp b/src/controllers/commands/CommandController.cpp index d8d766f0b..06feedd96 100644 --- a/src/controllers/commands/CommandController.cpp +++ b/src/controllers/commands/CommandController.cpp @@ -955,7 +955,7 @@ void CommandController::initialize(Settings &, Paths &paths) QString message) { using Error = HelixGetChattersError; - QString errorMessage = QString("Failed to get chatter count: "); + QString errorMessage = QString("Failed to get chatter count - "); switch (error) { @@ -1063,7 +1063,7 @@ void CommandController::initialize(Settings &, Paths &paths) auto formatModsError = [](HelixGetModeratorsError error, QString message) { using Error = HelixGetModeratorsError; - QString errorMessage = QString("Failed to get moderators: "); + QString errorMessage = QString("Failed to get moderators - "); switch (error) {