Skip to content

Commit 4870d15

Browse files
committed
Updated versions
1 parent 3c98a63 commit 4870d15

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

SpotifyAPI.Web.Auth/AuthorizationCodeAuth.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ public Task<bool> GetEmpty()
113113
}
114114

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

120120
string state = (string) formParams["state"];
121121
AuthorizationCodeAuth.Instances.TryGetValue(state, out SpotifyAuthServer<AuthorizationCode> authServer);

SpotifyAPI.Web.Auth/SpotifyAPI.Web.Auth.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="EmbedIO" Version="2.1.1" />
18+
<PackageReference Include="EmbedIO" Version="2.2.7" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

SpotifyAPI.Web.Auth/SpotifyAPI.Web.Auth.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
<projectUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/</projectUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>
14-
An API for Spotify's Web API, written in .NET
14+
Authorization Flows for the Spotify's Web API, written in .NET
1515

1616
For more infos, visit https://github.com/JohnnyCrazy/SpotifyAPI-NET
1717
</description>
1818
<language />
1919
<tags>spotify api music .net c# spotify-client</tags>
2020
<dependencies>
2121
<dependency id="SpotifyAPI.Web" version="3.0.0" />
22-
<dependency id="EmbedIO" version="1.15.0" />
22+
<dependency id="EmbedIO" version="2.2.7" />
2323
</dependencies>
2424
</metadata>
2525
<files>

SpotifyAPI.Web/SpotifyAPI.Web.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
<projectUrl>https://github.com/JohnnyCrazy/SpotifyAPI-NET/</projectUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>
14-
Authorization Flows for the Spotify's Web API, written in .NET
14+
An API for Spotify's Web API, written in .NET
1515

1616
For more infos, visit https://github.com/JohnnyCrazy/SpotifyAPI-NET
1717
</description>
1818
<language />
1919
<tags>spotify api music .net c# spotify-client</tags>
2020
<dependencies>
21-
<dependency id="Newtonsoft.Json" version="11.0.2" />
21+
<dependency id="Newtonsoft.Json" version="12.0.1" />
2222
</dependencies>
2323
</metadata>
2424
<files>

0 commit comments

Comments
 (0)