Merge pull request #8887 from annando/prevent-null
Prevent "null" value when calling "getTagsFromUrl"
This commit is contained in:
commit
8411c13d51
|
@ -544,7 +544,7 @@ class Feed
|
||||||
|
|
||||||
if (!empty($contact["fetch_further_information"]) && ($contact["fetch_further_information"] == 3)) {
|
if (!empty($contact["fetch_further_information"]) && ($contact["fetch_further_information"] == 3)) {
|
||||||
if (empty($taglist)) {
|
if (empty($taglist)) {
|
||||||
$taglist = PageInfo::getTagsFromUrl($item["plink"], $preview, $contact["ffi_keyword_denylist"]);
|
$taglist = PageInfo::getTagsFromUrl($item["plink"], $preview, $contact["ffi_keyword_denylist"] ?? '');
|
||||||
}
|
}
|
||||||
$item["body"] .= "\n" . self::tagToString($taglist);
|
$item["body"] .= "\n" . self::tagToString($taglist);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue