Merge pull request #8913 from annando/notice

Fix notice "Undefined index: parent-uri"
This commit is contained in:
Hypolite Petovan 2020-07-21 16:14:44 -04:00 committed by GitHub
commit f6428cf2bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View File

@ -2001,6 +2001,7 @@ class Item
$uids = Tag::getUIDListByURIId($item['uri-id']);
foreach ($uids as $uid) {
$original['uri-id'] = $item['uri-id'];
$original['gravity'] = $item['gravity'];
$stored = self::storeForUser($original, $uid);
Logger::info('Stored item for users', ['uri-id' => $item['uri-id'], 'uid' => $uid, 'stored' => $stored]);
}
@ -2189,7 +2190,7 @@ class Item
$item['origin'] = 0;
$item['wall'] = 0;
if ($item['uri'] == $item['parent-uri']) {
if ($item['gravity'] == GRAVITY_PARENT) {
$contact = Contact::getByURLForUser($item['owner-link'], $uid, false, ['id']);
} else {
$contact = Contact::getByURLForUser($item['author-link'], $uid, false, ['id']);
@ -2212,7 +2213,7 @@ class Item
/// @todo Handling of "event-id"
$notify = false;
if ($item['uri'] == $item['parent-uri']) {
if ($item['gravity'] == GRAVITY_PARENT) {
$contact = DBA::selectFirst('contact', [], ['id' => $item['contact-id'], 'self' => false]);
if (DBA::isResult($contact)) {
$notify = self::isRemoteSelf($contact, $item);

View File

@ -514,6 +514,10 @@ class Processor
*/
public static function postItem(array $activity, array $item)
{
if (empty($item)) {
return;
}
$stored = false;
foreach ($activity['receiver'] as $receiver) {