mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-01 12:43:46 +02:00
fix some not a function errors
This commit is contained in:
@@ -317,7 +317,9 @@ export const useVrcxStore = defineStore('Vrcx', () => {
|
|||||||
});
|
});
|
||||||
instanceStore.cachedInstances.forEach((ref, id) => {
|
instanceStore.cachedInstances.forEach((ref, id) => {
|
||||||
if (
|
if (
|
||||||
friendStore.friends.values().some((f) => f.$location.tag === id)
|
[...friendStore.friends.values()].some(
|
||||||
|
(f) => f.$location.tag === id
|
||||||
|
)
|
||||||
) {
|
) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user