diff options
| author | Fuwn <[email protected]> | 2026-01-22 20:09:42 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-22 20:09:42 -0800 |
| commit | 13c9d0f53c5a65b6e5f8f5c45343f1589521002b (patch) | |
| tree | fd6b89e442f79f9b1344fc197c07942ac61cfcd0 /src/lib | |
| parent | refactor(configuration): Replace svelte-preprocess with vitePrepreocess (diff) | |
| download | due.moe-13c9d0f53c5a65b6e5f8f5c45343f1589521002b.tar.xz due.moe-13c9d0f53c5a65b6e5f8f5c45343f1589521002b.zip | |
deps(sveltekit): Migrate to SvelteKit 2
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/Utility/oauth.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Utility/oauth.ts b/src/lib/Utility/oauth.ts index 5c05bff9..c42739c3 100644 --- a/src/lib/Utility/oauth.ts +++ b/src/lib/Utility/oauth.ts @@ -47,5 +47,5 @@ export const callback = async (options: CallbackOptions) => { } ); - throw redirect(303, options.redirect ?? '/'); + redirect(303, options.redirect ?? '/'); }; |