]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/CheckDeletedContacts.php
Merge pull request #10901 from nupplaphil/bug/notify_post
[friendica.git] / src / Worker / CheckDeletedContacts.php
index 505d026e3a7d8a3357afd84be4fc2274dfb8baa7..385cdc12d5ec5495cbdd87ec7d691862e9b6f89d 100644 (file)
@@ -34,7 +34,7 @@ class CheckDeletedContacts
        {
                $contacts = DBA::select('contact', ['id'], ['deleted' => true]);
                while ($contact = DBA::fetch($contacts)) {
-                       Worker::add(PRIORITY_MEDIUM, 'RemoveContact', $contact['id']);
+                       Worker::add(PRIORITY_MEDIUM, 'Contact\Remove', $contact['id']);
                }
                DBA::close($contacts);
        }