From 879face4257a5e7adab3403f3279896969d3f972 Mon Sep 17 00:00:00 2001 From: regalijan Date: Thu, 19 Oct 2023 16:51:09 -0400 Subject: [PATCH] assertion -> token --- functions/api/auth/mobile/token.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/api/auth/mobile/token.ts b/functions/api/auth/mobile/token.ts index d7217d8..0bad673 100644 --- a/functions/api/auth/mobile/token.ts +++ b/functions/api/auth/mobile/token.ts @@ -54,6 +54,6 @@ export async function onRequestGet(context: RequestContext) { .replaceAll("=", ""); return Response.redirect( - `com.carcrushers.app://login-callback?assertion=${header}.${claimSet}.${encodedSignature}`, + `com.carcrushers.app://login-callback?token=${header}.${claimSet}.${encodedSignature}`, ); }