fix bug for /api/shop/items/buy

This commit is contained in:
2025-12-30 18:21:16 +01:00
parent 84fed4acda
commit 5e2ec81d0c
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -643,6 +643,7 @@ document.getElementById("addressForm").onsubmit = function (e) {
const items = cart.map((item) => ({
id: item.name,
quantity: item.qty,
sellQuantity: getItemSellQuantity(item.name),
}));
const request = {
userId: user.username,