diff --git a/src/lib.rs b/src/lib.rs index 028974d..492c473 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -55,7 +55,7 @@ impl CacheControl { CacheControl::NoStore => "no-store", CacheControl::PublicShort => "max-age=0, s-maxage=60, stale-while-revalidate=120", CacheControl::PublicMedium => "max-age=0, s-maxage=900", - CacheControl::PublicLong => "max-age=0, s-maxage=3600", + CacheControl::PublicLong => "max-age=0, s-maxage=86400", } } }