Jake Vanderwerf
2026-02-17 a24a06002081ad71a78ffeff9072725ba39cf121
inc/managers/queue/mergers/DefaultMerger.php
@@ -26,7 +26,7 @@
   public function merge(Operation $existing, Operation $incoming): Operation
   {
      foreach ((array) $this->chunkKey as $key) {
         $existing->requestData[$key] = array_merge(
         $existing->requestData[$key] = array_replace(
            $existing->requestData[$key] ?? [],
            $incoming->requestData[$key] ?? []
         );
@@ -35,4 +35,8 @@
      $existing->totalItems += $incoming->totalItems;
      return $existing;
   }
   public function matchCriteria(Operation $incoming): array
   {
      return [];
   }
}