From 6df1768ec97ccafdd8b1d0d6e1ac0bd95a59f6d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Holzer?= Date: Thu, 4 Apr 2019 21:11:52 +0200 Subject: [PATCH] Redirect window says "can be closed now". So why not let javascript do the job? ;-) --- SpotifyAPI.Web.Auth/ImplicitGrantAuth.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpotifyAPI.Web.Auth/ImplicitGrantAuth.cs b/SpotifyAPI.Web.Auth/ImplicitGrantAuth.cs index c99809f84..62fd186f4 100644 --- a/SpotifyAPI.Web.Auth/ImplicitGrantAuth.cs +++ b/SpotifyAPI.Web.Auth/ImplicitGrantAuth.cs @@ -55,7 +55,7 @@ public Task GetAuth() } Task.Factory.StartNew(() => auth.TriggerAuth(token)); - return this.StringResponseAsync("OK - This window can be closed now"); + return this.StringResponseAsync("OK - This window can be closed now"); } public ImplicitGrantAuthController(IHttpContext context) : base(context)