Add message for empty mod list. (#4546)
This commit is contained in:
@@ -1161,6 +1161,13 @@ void CommandController::initialize(Settings &, Paths &paths)
|
||||
getHelix()->getModerators(
|
||||
twitchChannel->roomId(), 500,
|
||||
[channel, twitchChannel](auto result) {
|
||||
if (result.empty())
|
||||
{
|
||||
channel->addMessage(makeSystemMessage(
|
||||
"This channel does not have any moderators."));
|
||||
return;
|
||||
}
|
||||
|
||||
// TODO: sort results?
|
||||
|
||||
MessageBuilder builder;
|
||||
|
||||
Reference in New Issue
Block a user