We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 302f6c5 commit a8072daCopy full SHA for a8072da
app/code/Magento/Checkout/Controller/Sidebar/UpdateItemQty.php
@@ -66,7 +66,7 @@ public function __construct(
66
public function execute()
67
{
68
$itemId = (int)$this->getRequest()->getParam('item_id');
69
- $itemQty = $this->getRequest()->getParam('item_qty') * 1;
+ $itemQty = (int)$this->getRequest()->getParam('item_qty') * 1;
70
$itemQty = $this->quantityProcessor->prepareQuantity($itemQty);
71
72
try {
0 commit comments