MarkReeder / Turntable.fm-Extensions

http://globalplaylist.com/turntable.fm.html
79 stars 14 forks source link

Song Count Incorrect. #69

Closed Shellica closed 12 years ago

Shellica commented 12 years ago

Every since the TT update, my song count has been off by several hundred. (TT+ says I have around 1100 which I believe to be correct while TT Extended says I have over 1900).

This can't even be explained by duplicate tags because I tag everything by decade and only have a few categories in which I tag things twice, the sum of which is less than 200 songs.

I'm sure it's related to the TT update but since you're already working on bringing other functionality back (man I miss untagged songs) I thought I would let you know the issue I was having.

Also, if I uninstall the extension and reinstall will I lose my tags? I would be happy to try that first if you think it might work, and if I don't have to retag everything.

Thanks!

MarkReeder commented 12 years ago

I'm not doing anything fancy with the song count, just looking at how many entries are in turntable.playlist.songsByFid - if you want to see a list of all your songs, you could run the following in the console of your browser:

var songTitles = [], numSongs = 0; for(i in turntable.playlist.songsByFid) { numSongs++; songTitles.push(turntable.playlist.songsByFid[i].metadata.song); console.log(numSongs + ' - ' + turntable.playlist.songsByFid[i].metadata.artist + ' - ' + turntable.playlist.songsByFid[i].metadata.song); }