mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
Use separator when joining string attributes
This commit is contained in:
parent
20972c46d6
commit
380c6e4c6f
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user