Skip to content

Commit

Permalink
Fixed function naming: GetSimilarByMbidAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
fckoppenol committed Apr 8, 2016
1 parent 50efd3d commit 4007afe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/IF.Lastfm.Core/Api/ArtistApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public async Task<PageResponse<LastArtist>> GetSimilarAsync(string artistname, b
return await command.ExecuteAsync();
}

public async Task<PageResponse<LastArtist>> GetSimilarAsyncMbidAsync(string mbid, bool autocorrect = false, int limit = LastFm.DefaultPageLength)
public async Task<PageResponse<LastArtist>> GetSimilarByMbidAsync(string mbid, bool autocorrect = false, int limit = LastFm.DefaultPageLength)
{
var command = new GetSimilarCommand(Auth)
{
Expand Down
2 changes: 1 addition & 1 deletion src/IF.Lastfm.Core/Api/IArtistApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Task<LastResponse<LastArtist>> GetInfoByMbidAsync(string mbid, string bioLang =

Task<PageResponse<LastArtist>> GetSimilarAsync(string artistname, bool autocorrect = false, int limit = 100);

Task<PageResponse<LastArtist>> GetSimilarAsyncMbidAsync(string mbid, bool autocorrect = false, int limit = 100);
Task<PageResponse<LastArtist>> GetSimilarByMbidAsync(string mbid, bool autocorrect = false, int limit = 100);

Task<PageResponse<LastAlbum>> GetTopAlbumsAsync(string artist,
bool autocorrect = false,
Expand Down

0 comments on commit 4007afe

Please sign in to comment.