diff options
Diffstat (limited to 'src/routes/birthdays')
| -rw-r--r-- | src/routes/birthdays/+server.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/routes/birthdays/+server.ts b/src/routes/birthdays/+server.ts index 346619ac..fe94f3e5 100644 --- a/src/routes/birthdays/+server.ts +++ b/src/routes/birthdays/+server.ts @@ -1,5 +1,7 @@ export const GET = ({ url }) => Response.redirect( - `/tools?tool=birthdays${url.search.length > 0 ? url.search.replace('?', '') : ''}`, + `https://due.moe/tools?tool=birthdays${ + url.search.length > 0 ? url.search.replace('?', '') : '' + }`, 302 ); |