Skip to content

Commit

Permalink
Add message for empty mod list. (Chatterino#4546)
Browse files Browse the repository at this point in the history
  • Loading branch information
2547techno authored Apr 15, 2023
1 parent 8fd9752 commit 88bb1b4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
7 changes: 7 additions & 0 deletions src/controllers/commands/CommandController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 88bb1b4

Please sign in to comment.