mirror of
https://github.com/friendica/friendica
synced 2025-04-26 17:50:11 +00:00
Fix warnings
This commit is contained in:
parent
6d53036a9f
commit
80917018e9
2 changed files with 3 additions and 3 deletions
|
@ -422,7 +422,7 @@ class Feed {
|
|||
$data = ParseUrl::getSiteinfoCached($item['plink'], true);
|
||||
if (!empty($data['text']) && !empty($data['title']) && (mb_strlen($item['body']) < mb_strlen($data['text']))) {
|
||||
// When the fetched page info text is longer than the body, we do try to enhance the body
|
||||
if ((strpos($data['title'], $item['body']) === false) && (strpos($data['text'], $item['body']) === false)) {
|
||||
if (!empty($item['body']) && (strpos($data['title'], $item['body']) === false) && (strpos($data['text'], $item['body']) === false)) {
|
||||
// The body is not part of the fetched page info title or page info text. So we add the text to the body
|
||||
$item['body'] .= "\n\n" . $data['text'];
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue