Merge pull request #93 from nphmuller/CheckSavedAlbumsUrl

Corrected url in CheckSavedAlbum method.
This commit is contained in:
Jonas Dellinger 2016-07-23 19:40:56 +02:00 committed by GitHub
commit 0b259c3da1

View File

@ -540,7 +540,7 @@ namespace SpotifyAPI.Web
/// <remarks>AUTH NEEDED</remarks>
public string CheckSavedAlbums(List<string> ids)
{
return APIBase + "/me/tracks/contains?ids=" + string.Join(",", ids);
return APIBase + "/me/albums/contains?ids=" + string.Join(",", ids);
}
#endregion Library