Reply To: "Songs Served" and play_count not updated correctl

#5289
t0m
Participant

I’ve compiled mt-daapd with


./configure --enable-sqlite3 --enable-sqlite --enable-debug --enable-mdns --enable-oggvorbis --enable-flac

I switched to sqlite3 and streamed about 12 mp3s completely using the daap-java applet.

play_count and time_played for all files still 0.


# sqlite3 /usr/local/var/cache/mt-daapd/songs3.db
SQLite version 3.3.5
Enter ".help" for instructions
sqlite> SELECT count(*) FROM songs where time_played != 0;
0
sqlite> SELECT count(*) FROM songs where time_played = 0;
13095
sqlite> SELECT count(*) FROM songs where play_count != 0;
0
sqlite> SELECT count(*) FROM songs where play_count = 0;
13095
sqlite>