I'm using the db.view to do a
select * from music_file_info
However, most of my songs are not enabled, the result being that they do not show up in the recently played list. If I do:
update music_file_info
set enabled = 'true'
where enabled like 'false'
the songs are then enabled, and show up in recently played again, but are disabled again at the next index.
Any ideas?