mirror of
https://github.com/friendica/friendica
synced 2025-04-28 21:04:22 +02:00
Merge pull request #5906 from annando/ap-switch
OStatus contacts are now automatically converted to AP
This commit is contained in:
commit
59d6dd809d
7 changed files with 27 additions and 10 deletions
|
@ -303,6 +303,9 @@ class Processor
|
|||
$item = ['author-id' => Contact::getIdForURL($activity['actor']),
|
||||
'author-link' => $activity['actor']];
|
||||
|
||||
// Ensure that the contact has got the right network type
|
||||
self::switchContact($item['author-id']);
|
||||
|
||||
Contact::addRelationship($owner, $contact, $item);
|
||||
$cid = Contact::getIdForURL($activity['actor'], $uid);
|
||||
if (empty($cid)) {
|
||||
|
|
|
@ -452,7 +452,7 @@ class Receiver
|
|||
* @param integer $uid User ID
|
||||
* @param string $url Profile URL
|
||||
*/
|
||||
private static function switchContact($cid, $uid, $url)
|
||||
public static function switchContact($cid, $uid, $url)
|
||||
{
|
||||
$profile = ActivityPub::probeProfile($url);
|
||||
if (empty($profile)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue