From ee8af2510a606441c09dc986e34eae5fe7d7dab8 Mon Sep 17 00:00:00 2001 From: "J.Holzer" Date: Sun, 14 Apr 2019 21:50:15 +0200 Subject: [PATCH] Redirect window says "can be closed now". So why not let javascript do the job? ;-) (#334) --- 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 c99809f8..62fd186f 100644 --- a/SpotifyAPI.Web.Auth/ImplicitGrantAuth.cs +++ b/SpotifyAPI.Web.Auth/ImplicitGrantAuth.cs @@ -55,7 +55,7 @@ namespace SpotifyAPI.Web.Auth } 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)