mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:02:54 +00:00
"contact-id" has to be set, after "author-id" had been set
This commit is contained in:
parent
9819d31591
commit
bcadf19289
1 changed files with 3 additions and 3 deletions
|
@ -1471,9 +1471,6 @@ class Item extends BaseObject
|
|||
|
||||
$item['plink'] = defaults($item, 'plink', System::baseUrl() . '/display/' . urlencode($item['guid']));
|
||||
|
||||
// The contact-id should be set before "self::insert" was called - but there seems to be issues sometimes
|
||||
$item["contact-id"] = self::contactId($item);
|
||||
|
||||
$default = ['url' => $item['author-link'], 'name' => $item['author-name'],
|
||||
'photo' => $item['author-avatar'], 'network' => $item['network']];
|
||||
|
||||
|
@ -1529,6 +1526,9 @@ class Item extends BaseObject
|
|||
unset($item['causer-id']);
|
||||
unset($item['causer-link']);
|
||||
|
||||
// The contact-id should be set before "self::insert" was called - but there seems to be issues sometimes
|
||||
$item["contact-id"] = self::contactId($item);
|
||||
|
||||
if ($item['network'] == Protocol::PHANTOM) {
|
||||
$item['network'] = Protocol::DFRN;
|
||||
Logger::notice('Missing network, setting to {network}.', [
|
||||
|
|
Loading…
Reference in a new issue