Fixed artists split in DB layer. Services sorted most recent first.

This commit is contained in:
Jonathan Bernard
2015-07-22 09:26:53 -05:00
parent 0e16d42eaf
commit 5e81284220
5 changed files with 25 additions and 9 deletions

View File

@ -315,7 +315,7 @@ public class NLSongsDB {
return buildToken(row, user) }
public static List<String> unwrapArtists(String artists) {
return artists.split(';') as List<String> }
return artists.split(':') as List<String> }
public static String wrapArtists(List<String> artists) {
return artists.join(':') }