From 7645aff996ad29a907dd2988ab6abf3a7c9b6b68 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Sun, 6 Aug 2017 22:52:05 +0100 Subject: [PATCH] Fixed another bug with identity. #865 I'm thinking about removing it. Causing more hassle than it's worth --- src/Ombi/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi/Startup.cs b/src/Ombi/Startup.cs index cfbf50ba7..2690a4b0d 100644 --- a/src/Ombi/Startup.cs +++ b/src/Ombi/Startup.cs @@ -194,7 +194,7 @@ namespace Ombi app.UseIdentityServerAuthentication(new IdentityServerAuthenticationOptions { #if !DEBUG - Authority = $"http://{url.Value}:{port.Value}", + Authority = $"{url.Value}:{port.Value}", #else Authority = $"http://localhost:52038/", #endif