There is a bug
in 'Playlist.loadWinampFile'
the buggy line reads
if (str.charAt(0) != '/' || str.indexOf(":") != -1) { ...
but it has to read:
if (str.charAt(0) != '/' && str.indexOf(":") == -1) { ...
Lyakas Alexander
lyakasal@cs.technion.ac.il