]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Contact.php
Issue 8371: More enhanced logging
[friendica.git] / src / Model / Contact.php
index f60a362c57689ce22b3f14e88f6f98101db23736..9ae27994c7e33e3f19b899f411a3b11ff831e368 100644 (file)
@@ -1621,6 +1621,9 @@ class Contact
                                // Update the gcontact entry
                                if ($uid == 0) {
                                        GContact::updateFromPublicContactID($contact_id);
+                                       if (($data['network'] == Protocol::ACTIVITYPUB) && in_array(DI::config()->get('system', 'gcontact_discovery'), [GContact::DISCOVERY_DIRECT, GContact::DISCOVERY_RECURSIVE])) {
+                                               GContact::discoverFollowers($data['url']);
+                                       }
                                }
                        }
                } else {
@@ -1911,7 +1914,7 @@ class Contact
         * @param int    $cid    Contact id
         * @param bool   $force  force picture update
         *
-        * @return array Returns array of the different avatar sizes
+        * @return void
         * @throws HTTPException\InternalServerErrorException
         * @throws HTTPException\NotFoundException
         * @throws \ImagickException
@@ -1920,8 +1923,7 @@ class Contact
        {
                $contact = DBA::selectFirst('contact', ['avatar', 'photo', 'thumb', 'micro', 'nurl'], ['id' => $cid, 'self' => false]);
                if (!DBA::isResult($contact)) {
-                       Logger::error('Contact not found', ['cid' => $cid]);
-                       throw new HTTPException\NotFoundException('Contact not found');
+                       return;
                }
 
                $data = [
@@ -1952,12 +1954,8 @@ class Contact
                                                DBA::update('contact', $fields, ['id' => $pcontact['id']]);
                                        }
                                }
-
-                               return $photos;
                        }
                }
-
-               return $data;
        }
 
        /**