fix: Dedicated token name for next version

This commit is contained in:
Dries Augustyns
2025-12-08 14:31:13 +01:00
parent f7ac25f91f
commit fc535a558f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ export const jwt = {
* @param request The express request object
*/
export function parseJwt(request: Request): string {
const token: string | undefined = request.cookies.token;
const token: string | undefined = request.cookies.next_token;
if (!token) {
throw new NotAuthenticated();