aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Entry.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models/Entry.php')
-rw-r--r--app/Models/Entry.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/Entry.php b/app/Models/Entry.php
index c1ae66f65..fe6702bcd 100644
--- a/app/Models/Entry.php
+++ b/app/Models/Entry.php
@@ -830,7 +830,7 @@ HTML;
foreach ($metas as $meta) {
if ($meta instanceof DOMElement && strtolower(trim($meta->getAttribute('http-equiv'))) === 'refresh') {
$refresh = preg_replace('/^[0-9.; ]*\s*(url\s*=)?\s*/i', '', trim($meta->getAttribute('content')));
- $refresh = SimplePie_Misc::absolutize_url($refresh, $url);
+ $refresh = is_string($refresh) ? \SimplePie\Misc::absolutize_url($refresh, $url) : false;
if ($refresh != false && $refresh !== $url) {
return $this->getContentByParsing($refresh, $maxRedirs - 1);
}