]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/UpdateContact.php
Fixings
[friendica.git] / src / Worker / UpdateContact.php
index 7679431fd90d573dc1f7e962c066c7afd6287568..0e5fd141281ec182a111c3f2d48befbe6ac7ecf4 100644 (file)
@@ -13,6 +13,11 @@ use Friendica\Database\DBA;
 
 class UpdateContact
 {
+       /**
+        * Update contact data via probe
+        * @param int    $contact_id Contact ID
+        * @param string $command
+        */
        public static function execute($contact_id, $command = '')
        {
                $force = ($command == "force");
@@ -20,19 +25,5 @@ class UpdateContact
                $success = Contact::updateFromProbe($contact_id, '', $force);
 
                Logger::info('Updated from probe', ['id' => $contact_id, 'force' => $force, 'success' => $success]);
-
-               // Update the update date fields only when we are forcing the update
-               if (!$force) {
-                       return;
-               }
-
-               // Update the "last-update", "success_update" and "failure_update" field only when it is a public contact.
-               // These fields are set in OnePoll for all non public contacts.
-               $updated = DateTimeFormat::utcNow();
-               if ($success) {
-                       DBA::update('contact', ['last-update' => $updated, 'success_update' => $updated], ['id' => $contact_id, 'uid' => 0]);
-               } else {
-                       DBA::update('contact', ['last-update' => $updated, 'failure_update' => $updated], ['id' => $contact_id, 'uid' => 0]);
-               }
        }
 }