Merge pull request #9780 from annando/alternate-9775

Create plink if missing
This commit is contained in:
Hypolite Petovan 2021-01-11 15:25:25 -05:00 committed by GitHub
commit 884419a6bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -1265,7 +1265,7 @@ class Diaspora
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
* @throws \ImagickException
*/
private static function plink($addr, $guid, $parent_guid = '')
private static function plink(string $addr, string $guid, string $parent_guid = '')
{
$contact = Contact::getByURL($addr);
if (empty($contact)) {
@ -2436,6 +2436,10 @@ class Diaspora
return false;
}
if (empty($original_item['plink'])) {
$original_item['plink'] = self::plink($root_author, $root_guid);
}
$datarray = [];
$datarray["uid"] = $importer["uid"];