Don't default unknown Marketplace item types to 'Entity'

This commit is contained in:
Zach Fox 2018-03-07 15:01:12 -08:00
parent 7381bb0d7e
commit a0eb7e0712

View file

@ -147,8 +147,7 @@ Rectangle {
} else if (root.itemHref.indexOf('.json') > -1) {
root.itemType = "entity"; // "wearable" type handled later
} else {
console.log("WARNING - Item type is UNKNOWN!");
root.itemType = "entity";
root.itemType = "unknown";
}
}