From: Michael Date: Mon, 8 Apr 2019 21:35:00 +0000 (+0000) Subject: Removed a worker call - this needs more work X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a2ca14def48485b44cec701ae255838253196538;p=friendica.git Removed a worker call - this needs more work --- diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 2916cf1bb2..47b2a8b1e6 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -1255,11 +1255,6 @@ class Contact extends BaseObject $update_contact = true; } - // Update the contact in the background if needed - if ($update_contact && $no_update) { - Worker::add(PRIORITY_LOW, "UpdateContact", $contact_id); - } - if (!$update_contact || $no_update) { return $contact_id; }