]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/FContact.php
Use rawContent for Special Options to avoid a protected options() method
[friendica.git] / src / Model / FContact.php
index 09ee3fb3d5dbb1d824e3a9376d8f206c46feb91f..6812f5fd09d87ef1070c21a1f570ef6c3aa5e205 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -75,7 +75,7 @@ class FContact
                        // Note that Friendica contacts will return a "Diaspora person"
                        // if Diaspora connectivity is enabled on their server
                        if ($data['network'] ?? '' === Protocol::DIASPORA) {
-                               self::updateFContact($data);
+                               self::updateFromProbeArray($data);
 
                                $person = self::getByURL($handle, false);
                        }
@@ -90,7 +90,7 @@ class FContact
         * @param array $arr The fcontact data
         * @throws \Exception
         */
-       private static function updateFContact($arr)
+       public static function updateFromProbeArray($arr)
        {
                $uriid = ItemURI::insert(['uri' => $arr['url'], 'guid' => $arr['guid']]);