Skip to content

Commit 256cedd

Browse files
committed
ensure tags uniqueness
1 parent e1c5c1d commit 256cedd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/Indexer/CacheContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ public function getIdentities()
7373
$identities[] = $cacheTag . '_' . $id;
7474
}
7575
}
76-
return array_merge($identities, array_unique($this->tags));
76+
return array_unique(array_merge($identities, array_unique($this->tags));
7777
}
7878
}

0 commit comments

Comments
 (0)