Lower priority for removing item
authorMichael <heluecht@pirati.ca>
Sun, 3 Feb 2019 23:59:16 +0000 (23:59 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 3 Feb 2019 23:59:16 +0000 (23:59 +0000)
src/Worker/RemoveContact.php

index 00027dc..08c7c23 100644 (file)
@@ -24,7 +24,7 @@ class RemoveContact {
                do {
                        $items = Item::select(['id'], $condition, ['limit' => 100]);
                        while ($item = Item::fetch($items)) {
-                               DBA::delete('item', ['id' => $item['id']]);
+                               Item::deleteById($item['id'], PRIORITY_NEGLIGIBLE);
                        }
                        DBA::close($items);
                } while (Item::exists($condition));