Fix friend sidebar styling

This commit is contained in:
Natsumi
2025-01-26 06:03:05 +13:00
parent 5214522789
commit acf62b138b
4 changed files with 13 additions and 10 deletions

View File

@@ -23276,7 +23276,8 @@ console.log(`isLinux: ${LINUX}`);
$app.computed.friendsInSameInstance = function () {
const friendsList = {};
this.friends.forEach((friend) => {
const allFriends = [...this.vipFriends, ...this.onlineFriends];
allFriends.forEach((friend) => {
if (!friend.ref?.$location.isRealInstance) return;
const key = friend.ref.$location.tag;