mirror of
https://github.com/billsonnn/nitro-react.git
synced 2025-01-18 21:36:27 +01:00
Fix issue with name bubbles
This commit is contained in:
parent
029181ee04
commit
a893f89066
@ -121,7 +121,7 @@ const useAvatarInfoWidgetState = () =>
|
|||||||
|
|
||||||
event.addedUsers.forEach(user =>
|
event.addedUsers.forEach(user =>
|
||||||
{
|
{
|
||||||
if(user.webID === GetSessionDataManager().userId) return;
|
if(user.webID === GetSessionDataManager().userId || user.type !== RoomObjectType.USER) return;
|
||||||
|
|
||||||
if(friends.find(friend => (friend.id === user.webID)))
|
if(friends.find(friend => (friend.id === user.webID)))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user