mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-02 21:16:07 +02:00
Rewrite shared feed
This commit is contained in:
@@ -84,15 +84,11 @@
|
||||
groupName.value = props.grouphint;
|
||||
} else if (locObj.groupId) {
|
||||
groupName.value = locObj.groupId;
|
||||
getGroupName(locObj.groupId)
|
||||
.then((name) => {
|
||||
if (name && props.locationobject.tag === locObj.tag) {
|
||||
groupName.value = name;
|
||||
}
|
||||
})
|
||||
.catch((e) => {
|
||||
console.error(e);
|
||||
});
|
||||
getGroupName(locObj.groupId).then((name) => {
|
||||
if (name && props.locationobject.tag === locObj.tag) {
|
||||
groupName.value = name;
|
||||
}
|
||||
});
|
||||
} else {
|
||||
groupName.value = '';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user