diff options
Diffstat (limited to 'app/Controllers/extensionController.php')
| -rw-r--r-- | app/Controllers/extensionController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/extensionController.php b/app/Controllers/extensionController.php index ef63c38d2..38f04a277 100644 --- a/app/Controllers/extensionController.php +++ b/app/Controllers/extensionController.php @@ -330,7 +330,7 @@ class FreshRSS_extension_Controller extends FreshRSS_ActionController { header("Content-Type: {$content_type}"); header("Content-Disposition: inline; filename='{$filename}'"); header('Referrer-Policy: same-origin'); - if (!httpConditional($mtime, cacheSeconds: 604800, cachePrivacy: 2)) { + if (file_exists(DATA_PATH . '/no-cache.txt') || !httpConditional($mtime, cacheSeconds: 604800, cachePrivacy: 2)) { echo $extension->getFile($filename); } } |
