1
0
Fork 0

More often update Diaspora contacts

This commit is contained in:
Michael 2021-12-30 22:40:52 +00:00
commit ce174cad91
2 changed files with 11 additions and 2 deletions

View file

@ -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']]);