diff options
| author | 2025-08-14 09:35:30 +0200 | |
|---|---|---|
| committer | 2025-08-14 09:35:30 +0200 | |
| commit | 531b9286d94f2f38e8725284bc2bd038f32d743e (patch) | |
| tree | 802dc9ebcc9e8c14415314a2d0d9659811e03016 /app/Models | |
| parent | 4ef52d682560e95fed3a718bec04437e86199e40 (diff) | |
Fix regression on_http_response (#7824)
Fix regression (bad merge) from https://github.com/FreshRSS/FreshRSS/pull/7775
* https://github.com/FreshRSS/simplepie/pull/50
Diffstat (limited to 'app/Models')
| -rw-r--r-- | app/Models/SimplePieResponse.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/SimplePieResponse.php b/app/Models/SimplePieResponse.php index 6a444a86a..322145d2b 100644 --- a/app/Models/SimplePieResponse.php +++ b/app/Models/SimplePieResponse.php @@ -4,7 +4,7 @@ declare(strict_types=1); final class FreshRSS_SimplePieResponse extends \SimplePie\File { #[\Override] - protected function on_http_response(string|false $response = ''): void { + protected function on_http_response($response = ''): void { syslog(LOG_INFO, 'FreshRSS SimplePie GET ' . $this->get_status_code() . ' ' . \SimplePie\Misc::url_remove_credentials($this->get_final_requested_uri())); if (in_array($this->get_status_code(), [429, 503], true)) { |
