Add message for empty mod list. (#4546)

This commit is contained in:
2547techno
2023-04-15 13:59:46 -04:00
committed by GitHub
parent 8fd975270a
commit 88bb1b4ae7
2 changed files with 8 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@
- Minor: Added better filter validation and error messages. (#4364)
- Minor: Updated the look of the Black Theme to be more in line with the other themes. (#4523)
- Minor: Reply context now censors blocked users. (#4502)
- Minor: Added system message for empty mod list. (#4546)
- Minor: Added `/lowtrust` command to open the suspicious user activity feed in browser. (#4542)
- Bugfix: Fixed an issue where animated emotes would render on top of zero-width emotes. (#4314)
- Bugfix: Fixed an issue where it was difficult to hover a zero-width emote. (#4314)
@@ -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;