diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/Models/Feed.php | 2 | ||||
| -rw-r--r-- | app/Utils/httpUtil.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/Models/Feed.php b/app/Models/Feed.php index 19ff4fa81..511bdc54a 100644 --- a/app/Models/Feed.php +++ b/app/Models/Feed.php @@ -1415,7 +1415,7 @@ class FreshRSS_Feed extends Minz_Model { CURLOPT_USERAGENT => FRESHRSS_USERAGENT, CURLOPT_MAXREDIRS => 10, CURLOPT_FOLLOWLOCATION => true, - CURLOPT_ENCODING => '', //Enable all encodings + CURLOPT_ACCEPT_ENCODING => '', //Enable all encodings //CURLOPT_VERBOSE => 1, // To debug sent HTTP headers ]); $response = curl_exec($ch); diff --git a/app/Utils/httpUtil.php b/app/Utils/httpUtil.php index ba63f0dde..5b652b5f2 100644 --- a/app/Utils/httpUtil.php +++ b/app/Utils/httpUtil.php @@ -339,7 +339,7 @@ final class FreshRSS_http_Util { CURLOPT_MAXREDIRS => 4, CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, - CURLOPT_ENCODING => '', //Enable all encodings + CURLOPT_ACCEPT_ENCODING => '', //Enable all encodings //CURLOPT_VERBOSE => 1, // To debug sent HTTP headers ]); |
