Merge pull request #12591 from zfox23/RC65_fixUncertifiedPurchases

Don't default unknown Marketplace item types to 'Entity'
This commit is contained in:
John Conklin II 2018-03-08 09:36:28 -08:00 committed by GitHub
commit 3e9e55c3db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";
}
}