Fixed function naming: GetSimilarByMbidAsync

This commit is contained in:
fckoppenol 2016-04-08 11:33:25 +02:00
parent 50efd3d2fb
commit 4007afeab4
2 changed files with 2 additions and 2 deletions

View File

@ -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)
{

View File

@ -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,