Fix inconsistent separator usage in command failure messages (#4379)

This commit is contained in:
Lucas K 2023-02-14 22:27:33 +01:00 committed by GitHub
parent f317d4c99b
commit ff53b7cc97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)
{