diff options
Diffstat (limited to 'pages/api/v2')
| -rw-r--r-- | pages/api/v2/episode/[id].js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/api/v2/episode/[id].js b/pages/api/v2/episode/[id].js index e17f76a..c5d98f5 100644 --- a/pages/api/v2/episode/[id].js +++ b/pages/api/v2/episode/[id].js @@ -77,8 +77,8 @@ async function fetchAnify(id) { export default async function handler(req, res) { const { id, releasing = "false", dub = false } = req.query; - // if releasing is true then cache for 10 minutes, if it false cache for 1 week; - const cacheTime = releasing === "true" ? 60 * 10 : 60 * 60 * 24 * 7; + // if releasing is true then cache for 10 minutes, if it false cache for 1 month; + const cacheTime = releasing === "true" ? 60 * 10 : 60 * 60 * 24 * 30; let cached; |