1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-29 10:52:27 +01:00

Fix removal of duplicates from getAlbums() return value.

This commit is contained in:
Doug Kearns
2009-03-19 00:06:45 +11:00
parent 2feddd7f9e
commit 431743b907

View File

@@ -189,7 +189,7 @@ function getAlbums(artist)
i++;
}
return util.Array.uniq(albumArray);
return util.Array.uniq(albumArray.map(String));
}
function getTracks(artist,album)