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