From 4007afeab409ee707b1b5b632eedfd372ef35ae5 Mon Sep 17 00:00:00 2001 From: fckoppenol Date: Fri, 8 Apr 2016 11:33:25 +0200 Subject: [PATCH] Fixed function naming: GetSimilarByMbidAsync --- src/IF.Lastfm.Core/Api/ArtistApi.cs | 2 +- src/IF.Lastfm.Core/Api/IArtistApi.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/IF.Lastfm.Core/Api/ArtistApi.cs b/src/IF.Lastfm.Core/Api/ArtistApi.cs index 3a0f2562..e0683e76 100644 --- a/src/IF.Lastfm.Core/Api/ArtistApi.cs +++ b/src/IF.Lastfm.Core/Api/ArtistApi.cs @@ -77,7 +77,7 @@ public async Task> GetSimilarAsync(string artistname, b return await command.ExecuteAsync(); } - public async Task> GetSimilarAsyncMbidAsync(string mbid, bool autocorrect = false, int limit = LastFm.DefaultPageLength) + public async Task> GetSimilarByMbidAsync(string mbid, bool autocorrect = false, int limit = LastFm.DefaultPageLength) { var command = new GetSimilarCommand(Auth) { diff --git a/src/IF.Lastfm.Core/Api/IArtistApi.cs b/src/IF.Lastfm.Core/Api/IArtistApi.cs index 31e7aab3..2455ce5a 100644 --- a/src/IF.Lastfm.Core/Api/IArtistApi.cs +++ b/src/IF.Lastfm.Core/Api/IArtistApi.cs @@ -20,7 +20,7 @@ Task> GetInfoByMbidAsync(string mbid, string bioLang = Task> GetSimilarAsync(string artistname, bool autocorrect = false, int limit = 100); - Task> GetSimilarAsyncMbidAsync(string mbid, bool autocorrect = false, int limit = 100); + Task> GetSimilarByMbidAsync(string mbid, bool autocorrect = false, int limit = 100); Task> GetTopAlbumsAsync(string artist, bool autocorrect = false,