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 13e6762 commit 0d44ee8Copy full SHA for 0d44ee8
app/code/Magento/AsynchronousOperations/Plugin/CollectionUpdater.php
@@ -26,8 +26,8 @@ class CollectionUpdater
26
public function afterGetData(AbstractDb $subject, ?array $result)
27
{
28
if (is_array($result) && !empty($result) &&
29
- $subject->getResource()->getTable('magento_bulk') == "magento_bulk" &&
30
- isset($result[0][OperationInterface::ID])
+ isset($result[0][OperationInterface::ID]) &&
+ $subject->getResource()->getTable('magento_bulk') == "magento_bulk"
31
) {
32
foreach ($result as $key => $row) {
33
$result[$key][OperationInterface::ID] = $row['id'];
0 commit comments