diff --git a/SpotifyAPI/Web/Util.cs b/SpotifyAPI/Web/Util.cs index ed01516a..e5a36ef6 100644 --- a/SpotifyAPI/Web/Util.cs +++ b/SpotifyAPI/Web/Util.cs @@ -20,7 +20,7 @@ namespace SpotifyAPI.Web List list = new List(); attributes.ToList().ForEach(element => list.Add(element.Text)); - return string.Join(" ", list); + return string.Join(separator, list); } } @@ -33,4 +33,4 @@ namespace SpotifyAPI.Web Text = text; } } -} \ No newline at end of file +}