mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Fix inconsistent separator usage in command failure messages (#4379)
This commit is contained in:
parent
f317d4c99b
commit
ff53b7cc97
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue