From 76e3d6adaf901f31ff365fb5995e80256973824c Mon Sep 17 00:00:00 2001 From: Omid Marfavi <21163286+marfavi@users.noreply.github.com> Date: Thu, 22 Jan 2026 21:58:36 +0100 Subject: [PATCH] fix: correct deep link format for app login --- coffeecard/CoffeeCard.Models/Entities/LoginType.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coffeecard/CoffeeCard.Models/Entities/LoginType.cs b/coffeecard/CoffeeCard.Models/Entities/LoginType.cs index 486951b1..40591e7b 100644 --- a/coffeecard/CoffeeCard.Models/Entities/LoginType.cs +++ b/coffeecard/CoffeeCard.Models/Entities/LoginType.cs @@ -43,7 +43,7 @@ string tokenHash return loginType switch { LoginType.Shifty => $"{redirectUri}auth?token={tokenHash}", - LoginType.App => $"{redirectUri}://login/auth/{tokenHash}", + LoginType.App => $"{redirectUri}login/auth/{tokenHash}", _ => throw new ApiException( "Deep link for the given application has not been implemented" ),