diff options
| author | Fuwn <[email protected]> | 2023-09-17 20:49:33 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-17 20:49:33 -0700 |
| commit | 3ad6bc49e4075dd4ee263ae1a4c0b0a0be3271ed (patch) | |
| tree | 3d2f355c89da13d78281d1068205bf937363afaf /src | |
| parent | feat(settings): hint text (diff) | |
| download | due.moe-3ad6bc49e4075dd4ee263ae1a4c0b0a0be3271ed.tar.xz due.moe-3ad6bc49e4075dd4ee263ae1a4c0b0a0be3271ed.zip | |
feat(feeds): decrease s-maxage
Diffstat (limited to 'src')
| -rw-r--r-- | src/routes/feeds/activity-notifications/+server.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/feeds/activity-notifications/+server.ts b/src/routes/feeds/activity-notifications/+server.ts index 3ab0e2c7..249ba985 100644 --- a/src/routes/feeds/activity-notifications/+server.ts +++ b/src/routes/feeds/activity-notifications/+server.ts @@ -51,7 +51,7 @@ export const GET = async ({ url }) => { return new Response(render(data), { headers: { - 'Cache-Control': `max-age=0, s-max-age=${600}`, + 'Cache-Control': `max-age=0, s-max-age=${60}`, 'Content-Type': 'application/xml' } }); |