Merge pull request #61 from CVertex/patch-2

Use separator when joining string attributes
This commit is contained in:
Jonas Dellinger 2015-12-07 13:52:16 +01:00
commit 59bdd4b47d

View File

@ -20,7 +20,7 @@ namespace SpotifyAPI.Web
List<String> list = new List<String>(); List<String> list = new List<String>();
attributes.ToList().ForEach(element => list.Add(element.Text)); 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; Text = text;
} }
} }
} }