From 380c6e4c6f0a4740b541a449efdc7993a1bdae74 Mon Sep 17 00:00:00 2001 From: Vijay Santhanam Date: Mon, 7 Dec 2015 23:30:00 +1100 Subject: [PATCH] Use separator when joining string attributes --- SpotifyAPI/Web/Util.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}