Problem solved, thanks to Sindre:
Go to
http://localhost:4040/db.view (where server is installed):
Run SQL commands
select * from media_file where play_count > 0
select * from album where play_count > 0
update media_file set play_count = 0 where play_count > 0
update album set play_count = 0 where play_count > 0
Christian