diff --git a/CHANGELOG.md b/CHANGELOG.md index 06a8abfc..3d438b58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,7 +30,7 @@ - Minor: Added a display name change event to `Channel` for plugins. (#6594) - Minor: Added action to reset `/watching`. (#6759) - Minor: Removed messaging about running flatpak. This is already apparent in the newer Flatpak runtimes. (#6768) -- Minor: Add `/(un)monitor` and `/(un)restrict` commands for moderators. (#6750) +- Minor: Add `/(un)monitor` and `/(un)restrict` commands for moderators. (#6750, #6785) - Bugfix: Fixed context menu hotkeys not working on macOS. (#6778) - Bugfix: Moderation checks now include the lead moderator badge. (#6642) - Bugfix: Fixed lead moderator badges not being filtered by the `Channel` badge setting. (#6665) diff --git a/src/providers/twitch/TwitchAccountManager.cpp b/src/providers/twitch/TwitchAccountManager.cpp index c2ae98ce..177cabd4 100644 --- a/src/providers/twitch/TwitchAccountManager.cpp +++ b/src/providers/twitch/TwitchAccountManager.cpp @@ -220,6 +220,10 @@ const std::vector AUTH_SCOPES{ u"moderator:read:vips", // for channel.moderate eventsub topic u"moderator:read:suspicious_users", // for channel.suspicious_user.message and channel.suspicious_user.update + + // https://dev.twitch.tv/docs/api/reference#add-suspicious-status-to-chat-user + // https://dev.twitch.tv/docs/api/reference#remove-suspicious-status-from-chat-user + u"moderator:manage:suspicious_users", }; TwitchAccountManager::TwitchAccountManager()