Merge pull request #9214 from MrPetovan/bug/9210-dfrn-contact-id
Fix wrong expected DB field name in DFRN::fetchauthor
This commit is contained in:
commit
b2d2cbb67f
1 changed files with 1 additions and 1 deletions
|
@ -1513,7 +1513,7 @@ class DFRN
|
||||||
}
|
}
|
||||||
|
|
||||||
$author["contact-unknown"] = true;
|
$author["contact-unknown"] = true;
|
||||||
$contact = Contact::getByURL($author["link"], null, ["contact-id", "network"]);
|
$contact = Contact::getByURL($author["link"], null, ["id", "network"]);
|
||||||
$author["contact-id"] = $contact["id"] ?? $importer["id"];
|
$author["contact-id"] = $contact["id"] ?? $importer["id"];
|
||||||
$author["network"] = $contact["network"] ?? $importer["network"];
|
$author["network"] = $contact["network"] ?? $importer["network"];
|
||||||
$onlyfetch = true;
|
$onlyfetch = true;
|
||||||
|
|
Loading…
Reference in a new issue