aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Entry.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2024-05-25 18:27:12 +0200
committerGravatar GitHub <noreply@github.com> 2024-05-25 18:27:12 +0200
commit3cd90a2b1f1ad4f55b494de2019d2ed915bb79c6 (patch)
tree1e6789f4f5daeec540f9acadce24754886085f72 /app/Models/Entry.php
parent3e7054bddd57805b265b91f89ef6dc2ba2a1eaea (diff)
Fix HTTP GET curl options (#6492)
fix https://github.com/FreshRSS/FreshRSS/issues/6491 Regression from https://github.com/FreshRSS/FreshRSS/pull/6177
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 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);