mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 17:54:00 +02:00
Merge pull request #15629 from zfox23/BUGZ-344
Fix BUGZ-344: Avatar Menu says "You have not created any avatars" but I have
This commit is contained in:
commit
26fd5f4302
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ Rectangle {
|
|||
if (result.status !== "success") {
|
||||
errorText.text = "There was a problem while retrieving your inventory. " +
|
||||
"Please try closing and re-opening the Avatar app.\n\nInventory status: " + result.status + "\nMessage: " + result.message;
|
||||
} else if (result.data && result.data.assets && result.data.assets.length === 0) {
|
||||
} else if (result.data && result.data.assets && result.data.assets.length === 0 && avatarAppInventoryModel.count === 0) {
|
||||
errorText.text = "You have not created any avatars yet! Create an avatar with the Avatar Creator, then close and re-open the Avatar App."
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue