diff --git a/LyricsScraperNET/Providers/Genius/GeniusUriConverter.cs b/LyricsScraperNET/Providers/Genius/GeniusUriConverter.cs index 2246fce..a6ba4c3 100644 --- a/LyricsScraperNET/Providers/Genius/GeniusUriConverter.cs +++ b/LyricsScraperNET/Providers/Genius/GeniusUriConverter.cs @@ -14,6 +14,6 @@ private string GetApiSearchQuery(string artist, string song) public Uri GetLyricUri(string artist, string song) => new Uri(string.Format(GeniusApiSearchFormat, GetApiSearchQuery(artist, song))); - + } } diff --git a/LyricsScraperNET/Providers/SongLyrics/SongLyricsUriConverter.cs b/LyricsScraperNET/Providers/SongLyrics/SongLyricsUriConverter.cs index 8d25895..1116fcd 100644 --- a/LyricsScraperNET/Providers/SongLyrics/SongLyricsUriConverter.cs +++ b/LyricsScraperNET/Providers/SongLyrics/SongLyricsUriConverter.cs @@ -13,7 +13,7 @@ public Uri GetLyricUri(string artist, string song) { var artistFormatted = artist.ToLowerInvariant().СonvertToDashedFormat(); var songFormatted = song.ToLowerInvariant().СonvertToDashedFormat(); - + return new Uri(string.Format(uriPathFormat, artistFormatted, songFormatted)); } }