Skip to content

Commit

Permalink
Fix bug in Accounts Service constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielLarsenNZ committed Aug 3, 2019
1 parent 14fe856 commit bde167b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SpotifyApi.NetCore/Authorization/AccountsService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public AccountsService(HttpClient httpClient, IConfiguration configuration, IBea

public AccountsService() : this(new HttpClient(), null, null) { }
public AccountsService(HttpClient httpClient) : this(httpClient, null, null) { }
public AccountsService(HttpClient httpClient, IConfiguration configuration) : this(new HttpClient(), configuration, null) { }
public AccountsService(HttpClient httpClient, IConfiguration configuration) : this(httpClient, configuration, null) { }

#endregion

Expand Down

0 comments on commit bde167b

Please sign in to comment.