Release v1.2.1 #1

Merged
efiordeliso merged 6 commits from dev into main 2024-03-08 13:45:28 -05:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 9c4e63c200 - Show all commits

View File

@ -117,7 +117,7 @@ func NewDefault(clientId, clientSecret, redirectUri string) *API {
}, },
} }
baseUrl, _ := url.Parse(HelixBaseUrl) baseUrl, _ := url.Parse(HelixBaseUrl)
authClient := auth.New(clientId, clientSecret, redirectUri) authClient := auth.NewWithClient(clientId, clientSecret, redirectUri, client)
return New(client, baseUrl, authClient) return New(client, baseUrl, authClient)
} }