fix: only hide messages from restricted users, not all suspicious users (#6049)

it's probably best to leave this setting solo'd out as restricted users
so monitored users can get their own behaviour in their own setting later
This commit is contained in:
pajlada
2025-03-09 13:11:06 +01:00
committed by GitHub
parent 154591c5a1
commit c98267b433
8 changed files with 17 additions and 18 deletions
+2 -2
View File
@@ -207,9 +207,9 @@ bool StreamerMode::shouldHideModActions() const
return getSettings()->streamerModeHideModActions && this->isEnabled();
}
bool StreamerMode::shouldHideSuspiciousUsers() const
bool StreamerMode::shouldHideRestrictedUsers() const
{
return getSettings()->streamerModeHideSuspiciousUsers && this->isEnabled();
return getSettings()->streamerModeHideRestrictedUsers && this->isEnabled();
}
void StreamerMode::start()