mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 06:56:27 +00:00
Merge pull request #61 from CVertex/patch-2
Use separator when joining string attributes
This commit is contained in:
commit
59bdd4b47d
@ -20,7 +20,7 @@ namespace SpotifyAPI.Web
|
||||
|
||||
List<String> list = new List<String>();
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user