diff options
author | 2023-07-19 22:18:42 +0200 | |
---|---|---|
committer | 2023-07-19 22:18:42 +0200 | |
commit | 517c7f5c9b003977aa7151b91c6e79342964c60f (patch) | |
tree | 0cdeab4be33fcf2586436481d1dfbdf08fa38322 | |
parent | 93620aa1058e9aca6e3c7f7bd8458630cd478360 (diff) | |
download | rss-bridge-517c7f5c9b003977aa7151b91c6e79342964c60f.tar.gz rss-bridge-517c7f5c9b003977aa7151b91c6e79342964c60f.tar.zst rss-bridge-517c7f5c9b003977aa7151b91c6e79342964c60f.zip |
fix(cache): bug (#3554)
-rw-r--r-- | lib/contents.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/contents.php b/lib/contents.php index 12a98b0c..4429a75c 100644 --- a/lib/contents.php +++ b/lib/contents.php @@ -169,7 +169,7 @@ function getContents( break; case 304: // Not Modified - $response['body'] = $cache->loadData(); + $response['body'] = $cache->loadData(86400 * 7); break; default: $exceptionMessage = sprintf( |