mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-21 07:43:50 +02:00
Fix on join notification bug
This commit is contained in:
@@ -705,7 +705,8 @@ speechSynthesis.getVoices();
|
||||
notys.push(feed);
|
||||
}
|
||||
}
|
||||
} else if ((notificationJoinLeaveFilter === "Everyone") ||
|
||||
}
|
||||
if ((notificationJoinLeaveFilter === "Everyone") ||
|
||||
((notificationJoinLeaveFilter === "Friends") && (feed.isFriend)) ||
|
||||
((notificationJoinLeaveFilter === "VIP") && (feed.isFavorite))) {
|
||||
if (feed.type === 'OnPlayerJoined' ||
|
||||
@@ -716,7 +717,8 @@ speechSynthesis.getVoices();
|
||||
notys.push(feed);
|
||||
}
|
||||
}
|
||||
} else if (feed.type === 'invite' ||
|
||||
}
|
||||
if (feed.type === 'invite' ||
|
||||
feed.type === 'requestInvite' ||
|
||||
feed.type === 'friendRequest') {
|
||||
if (!map[feed.senderUsername] ||
|
||||
|
||||
Reference in New Issue
Block a user