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/Feed.php | 1 + 1 file changed, 1 insertion(+) (limited to 'app/Models/Feed.php') diff --git a/app/Models/Feed.php b/app/Models/Feed.php index 5450d78c6..625c3c931 100644 --- a/app/Models/Feed.php +++ b/app/Models/Feed.php @@ -1058,6 +1058,7 @@ class FreshRSS_Feed extends Minz_Model { CURLOPT_MAXREDIRS => 10, CURLOPT_FOLLOWLOCATION => true, CURLOPT_ENCODING => '', //Enable all encodings + //CURLOPT_VERBOSE => 1, // To debug sent HTTP headers ]); $response = curl_exec($ch); $info = curl_getinfo($ch); -- cgit v1.2.3