Skip to content

Commit 59bdd4b

Browse files
committedDec 7, 2015
Merge pull request #61 from CVertex/patch-2
Use separator when joining string attributes
2 parents a2c542d + 380c6e4 commit 59bdd4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎SpotifyAPI/Web/Util.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static string GetStringAttribute<T>(this T en, String separator) where T
2020

2121
List<String> list = new List<String>();
2222
attributes.ToList().ForEach(element => list.Add(element.Text));
23-
return string.Join(" ", list);
23+
return string.Join(separator, list);
2424
}
2525
}
2626

@@ -33,4 +33,4 @@ public StringAttribute(String text)
3333
Text = text;
3434
}
3535
}
36-
}
36+
}

0 commit comments

Comments
 (0)
Please sign in to comment.