Fix:Plugins-share:init.php - site_url is NULL when share article by URL from archived

This commit is contained in:
linkai 2021-05-12 09:46:52 +08:00
parent 6c06a26649
commit 983655165e
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ class Share extends Plugin {
$line);
$enclosures = Article::_get_enclosures($line["id"]);
list ($og_image, $og_stream) = Article::_get_image($enclosures, $line['content'], $line["site_url"] ?: "", $line);
list ($og_image, $og_stream) = Article::_get_image($enclosures, $line['content'], $line["site_url"] ?? "", $line);
$content_decoded = html_entity_decode($line["title"], ENT_NOQUOTES | ENT_HTML401);
$parsed_updated = TimeHelper::make_local_datetime($line["updated"], true, $owner_uid, true);