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,