Fix fatal errors
This commit is contained in:
parent
d7ea4ea425
commit
36c65643fb
|
@ -995,10 +995,18 @@ class Transmitter
|
||||||
if (!empty($author['nurl'])) {
|
if (!empty($author['nurl'])) {
|
||||||
$self = Contact::selectFirst(['uid'], ['nurl' => $author['nurl'], 'self' => true]);
|
$self = Contact::selectFirst(['uid'], ['nurl' => $author['nurl'], 'self' => true]);
|
||||||
if (!empty($self['uid'])) {
|
if (!empty($self['uid'])) {
|
||||||
$item = Item::selectFirst([], ['uri-id' => $item['uri-id'], 'uid' => $self['uid']]);
|
$forum_item = Item::selectFirst([], ['uri-id' => $item['uri-id'], 'uid' => $self['uid']]);
|
||||||
|
if (DBA::isResult($item)) {
|
||||||
|
$item = $forum_item;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($item['uri-id'])) {
|
||||||
|
Logger::warning('Item without uri-id', ['item' => $item]);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (empty($type)) {
|
if (empty($type)) {
|
||||||
$condition = ['item-uri' => $item['uri'], 'protocol' => Conversation::PARCEL_ACTIVITYPUB];
|
$condition = ['item-uri' => $item['uri'], 'protocol' => Conversation::PARCEL_ACTIVITYPUB];
|
||||||
|
|
|
@ -552,6 +552,7 @@ class Feed
|
||||||
|
|
||||||
$data = PageInfo::queryUrl($item["plink"], false, $preview, ($contact["fetch_further_information"] == 2), $contact["ffi_keyword_denylist"] ?? '');
|
$data = PageInfo::queryUrl($item["plink"], false, $preview, ($contact["fetch_further_information"] == 2), $contact["ffi_keyword_denylist"] ?? '');
|
||||||
|
|
||||||
|
if (!empty($data)) {
|
||||||
// Take the data that was provided by the feed if the query is empty
|
// Take the data that was provided by the feed if the query is empty
|
||||||
if (($data['type'] == 'link') && empty($data['title']) && empty($data['text'])) {
|
if (($data['type'] == 'link') && empty($data['title']) && empty($data['text'])) {
|
||||||
$data['title'] = $saved_title;
|
$data['title'] = $saved_title;
|
||||||
|
@ -571,6 +572,7 @@ class Feed
|
||||||
$taglist = $contact["fetch_further_information"] == 2 ? PageInfo::getTagsFromUrl($item["plink"], $preview, $contact["ffi_keyword_denylist"] ?? '') : [];
|
$taglist = $contact["fetch_further_information"] == 2 ? PageInfo::getTagsFromUrl($item["plink"], $preview, $contact["ffi_keyword_denylist"] ?? '') : [];
|
||||||
$item["object-type"] = Activity\ObjectType::BOOKMARK;
|
$item["object-type"] = Activity\ObjectType::BOOKMARK;
|
||||||
$attachments = [];
|
$attachments = [];
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if (!empty($summary)) {
|
if (!empty($summary)) {
|
||||||
$item["body"] = '[abstract]' . HTML::toBBCode($summary, $basepath) . "[/abstract]\n" . $item["body"];
|
$item["body"] = '[abstract]' . HTML::toBBCode($summary, $basepath) . "[/abstract]\n" . $item["body"];
|
||||||
|
|
Loading…
Reference in a new issue