mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 09:24:00 +02:00
Merge pull request #12591 from zfox23/RC65_fixUncertifiedPurchases
Don't default unknown Marketplace item types to 'Entity'
This commit is contained in:
commit
3e9e55c3db
1 changed files with 1 additions and 2 deletions
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue