mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
Fix MS20308: Allow users to checkout uncertifiable items
This commit is contained in:
parent
3e10bea1ce
commit
47a46c1d1b
1 changed files with 5 additions and 1 deletions
|
@ -1089,9 +1089,13 @@ Rectangle {
|
|||
root.itemInfoReceived = true;
|
||||
root.itemName = result.data.title;
|
||||
root.itemPrice = result.data.cost;
|
||||
root.itemHref = Account.metaverseServerURL + result.data.path;
|
||||
root.itemAuthor = result.data.creator;
|
||||
root.itemType = result.data.item_type || "unknown";
|
||||
if (root.itemType === "unknown") {
|
||||
root.itemHref = result.data.review_url;
|
||||
} else {
|
||||
root.itemHref = Account.metaverseServerURL + result.data.path;
|
||||
}
|
||||
itemPreviewImage.source = result.data.thumbnail_url;
|
||||
refreshBuyUI();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue