Skip to content

Commit

Permalink
Updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnnyCrazy committed Feb 19, 2019
1 parent 3c98a63 commit 4870d15
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions SpotifyAPI.Web.Auth/AuthorizationCodeAuth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ public Task<bool> GetEmpty()
}

[WebApiHandler(HttpVerbs.Post, "/")]
public bool PostValues()
public async Task<bool> PostValues()
{
Dictionary<string, object> formParams = this.RequestFormDataDictionary();
Dictionary<string, object> formParams = await this.RequestFormDataDictionaryAsync();

string state = (string) formParams["state"];
AuthorizationCodeAuth.Instances.TryGetValue(state, out SpotifyAuthServer<AuthorizationCode> authServer);
Expand Down
2 changes: 1 addition & 1 deletion SpotifyAPI.Web.Auth/SpotifyAPI.Web.Auth.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EmbedIO" Version="2.1.1" />
<PackageReference Include="EmbedIO" Version="2.2.7" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions SpotifyAPI.Web.Auth/SpotifyAPI.Web.Auth.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
<projectUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
An API for Spotify's Web API, written in .NET
Authorization Flows for the Spotify's Web API, written in .NET

For more infos, visit https://github.com/JohnnyCrazy/SpotifyAPI-NET
</description>
<language />
<tags>spotify api music .net c# spotify-client</tags>
<dependencies>
<dependency id="SpotifyAPI.Web" version="3.0.0" />
<dependency id="EmbedIO" version="1.15.0" />
<dependency id="EmbedIO" version="2.2.7" />
</dependencies>
</metadata>
<files>
Expand Down
4 changes: 2 additions & 2 deletions SpotifyAPI.Web/SpotifyAPI.Web.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
<projectUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
Authorization Flows for the Spotify's Web API, written in .NET
An API for Spotify's Web API, written in .NET

For more infos, visit https://github.com/JohnnyCrazy/SpotifyAPI-NET
</description>
<language />
<tags>spotify api music .net c# spotify-client</tags>
<dependencies>
<dependency id="Newtonsoft.Json" version="11.0.2" />
<dependency id="Newtonsoft.Json" version="12.0.1" />
</dependencies>
</metadata>
<files>
Expand Down

0 comments on commit 4870d15

Please sign in to comment.