No longer permit temporary unmutes if you blocked them via CachedBlocklist

ipad-testing
Noah 2023-08-09 20:49:41 -07:00
parent 6572ee2059
commit 26a5b3549a
1 changed files with 15 additions and 0 deletions

View File

@ -641,6 +641,21 @@ const app = Vue.createApp({
muteUser(username) {
username = this.normalizeUsername(username);
let mute = this.muted[username] == undefined;
// If the user is muted because they were blocked on your main website (CachedBlocklist),
// do not allow a temporary unmute in chat: make them live with their choice.
if (this.config.CachedBlocklist.length > 0) {
for (let user of this.config.CachedBlocklist) {
if (user === username) {
this.ChatClient(
`You can not unmute <strong>${username}</strong> because you have blocked them on the main website. `+
`To unmute them, you will need to unblock them on the website and then reload the chat room.`
);
return;
}
}
}
if (mute) {
if (!window.confirm(
`Do you want to mute ${username}? If muted, you will no longer see their `+