Fix BUGZ-344

This commit is contained in:
Zach Fox 2019-05-24 12:12:55 -07:00
parent 6c9c3f76ed
commit 51d22c1988

View file

@ -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."
}