Version 2.1: Default to MP3s instead of OGGs for song files.

This commit is contained in:
Jonathan Bernard
2015-03-30 02:15:06 -05:00
parent 2bf0412629
commit 4580709d29
2 changed files with 4 additions and 4 deletions

View File

@ -13,5 +13,5 @@ public class NLSongsContext {
public static String makeUrl(Service service, Song song) {
return mediaBaseUrl + '/' + service.@date.toString('yyyy-MM-dd') + '_' +
service.serviceType.name().toLowerCase() + '_' +
song.name.replaceAll(/[\s'"\\\/\?!]/, '') + '.ogg' }
song.name.replaceAll(/[\s'"\\\/\?!]/, '') + '.mp3' }
}