mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 06:56:04 +02:00
Avatar lookup warning
This commit is contained in:
+6
-1
@@ -11922,10 +11922,15 @@ speechSynthesis.getVoices();
|
|||||||
if (!avatarId) {
|
if (!avatarId) {
|
||||||
if (avatarInfo.ownerId === refUserId) {
|
if (avatarInfo.ownerId === refUserId) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: "It's personal (own) avatar",
|
message:
|
||||||
|
"It's personal (own) avatar or not found in avatar database",
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
this.$message({
|
||||||
|
message: 'Avatar not found in avatar database',
|
||||||
|
type: 'warning'
|
||||||
|
});
|
||||||
this.showUserDialog(avatarInfo.ownerId);
|
this.showUserDialog(avatarInfo.ownerId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user