From 3c40c1da6677c6a4a4e56e578868fe7ef6f14586 Mon Sep 17 00:00:00 2001 From: Eroax Date: Fri, 8 Dec 2023 03:15:32 -0700 Subject: [PATCH] Implemented Redirect Port fully --- addons/no_twitch/twitch_connection.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/no_twitch/twitch_connection.gd b/addons/no_twitch/twitch_connection.gd index c152372..e7fdb33 100644 --- a/addons/no_twitch/twitch_connection.gd +++ b/addons/no_twitch/twitch_connection.gd @@ -86,7 +86,7 @@ func create_auth_url(scopes : Array[String] = ["chat:read", "chat:edit"], port : str_scopes += " " + all str_scopes = str_scopes.strip_edges() - var url = twitch_url + "client_id=" + id + "&redirect_uri=" + redirect + "&scope=" + str_scopes + "&state=" + str(state) + var url = twitch_url + "client_id=" + id + "&redirect_uri=" + redirect + ":" + port + "&scope=" + str_scopes + "&state=" + str(state) return url