From 3cd90a2b1f1ad4f55b494de2019d2ed915bb79c6 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sat, 25 May 2024 18:27:12 +0200 Subject: Fix HTTP GET curl options (#6492) fix https://github.com/FreshRSS/FreshRSS/issues/6491 Regression from https://github.com/FreshRSS/FreshRSS/pull/6177 --- app/Models/Entry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Models/Entry.php') diff --git a/app/Models/Entry.php b/app/Models/Entry.php index ca8d9c602..ad480f3e6 100644 --- a/app/Models/Entry.php +++ b/app/Models/Entry.php @@ -719,7 +719,7 @@ HTML; } $cachePath = $feed->cacheFilename($url . '#' . $feed->pathEntries()); - $html = httpGet($url, $cachePath, 'html'); + $html = httpGet($url, $cachePath, 'html', $feed->attributes(), $feed->curlOptions()); if (strlen($html) > 0) { $doc = new DOMDocument(); $doc->loadHTML($html, LIBXML_NONET | LIBXML_NOERROR | LIBXML_NOWARNING); -- cgit v1.2.3