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:
@@ -189,7 +189,7 @@ function getAlbums(artist)
|
||||
i++;
|
||||
}
|
||||
|
||||
return util.Array.uniq(albumArray);
|
||||
return util.Array.uniq(albumArray.map(String));
|
||||
}
|
||||
|
||||
function getTracks(artist,album)
|
||||
|
||||
Reference in New Issue
Block a user