From 51d22c198894a990ffd49c7947d854b88f273a4a Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Fri, 24 May 2019 12:12:55 -0700 Subject: [PATCH] Fix BUGZ-344 --- .../resources/qml/hifi/simplifiedUI/avatarApp/AvatarApp.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/resources/qml/hifi/simplifiedUI/avatarApp/AvatarApp.qml b/interface/resources/qml/hifi/simplifiedUI/avatarApp/AvatarApp.qml index b426f2d986..d6ee593edd 100644 --- a/interface/resources/qml/hifi/simplifiedUI/avatarApp/AvatarApp.qml +++ b/interface/resources/qml/hifi/simplifiedUI/avatarApp/AvatarApp.qml @@ -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." }