diff options
| author | 2025-10-01 23:07:38 +0200 | |
|---|---|---|
| committer | 2025-10-01 23:07:38 +0200 | |
| commit | 49c96fe3ec2273309d99cd2a6d4d80332e09557b (patch) | |
| tree | df94c0235ef9ccd2ee222d832a9e8f27d70434c4 /lib/composer.json | |
| parent | 8e57e28a9a1b37987d6ce9c6406df00a401bcf72 (diff) | |
Fix SimplePie support of HTTP trailer headers (#7983)
* Fix SimplePie support of HTTP trailer headers
fix https://github.com/FreshRSS/FreshRSS/discussions/7981
https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Trailer
https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Server-Timing
We need to use content-length to know where the body stops, but content-length is wrong is any compression was used.
So let cURL perform the separation of HTTP headers and body instead of using the SimplePie parser.
* Minor whitespace
* Same change for lib_rss
* Move changes to SimplePie repo
https://github.com/FreshRSS/simplepie/pull/55
https://github.com/FreshRSS/simplepie/pull/57
Diffstat (limited to 'lib/composer.json')
| -rw-r--r-- | lib/composer.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/composer.json b/lib/composer.json index 474379c5e..bc29759fe 100644 --- a/lib/composer.json +++ b/lib/composer.json @@ -14,7 +14,7 @@ "marienfressinaud/lib_opml": "0.5.1", "phpgt/cssxpath": "v1.3.0", "phpmailer/phpmailer": "6.11.1", - "simplepie/simplepie": "dev-freshrss#d381ca57e9c57e251a47de2b577846503c3030ce" + "simplepie/simplepie": "dev-freshrss#c1bf1a353dae742977dde34d65e4c89b633a9b47" }, "config": { "sort-packages": true, |
