Fix getUnplayedMusicItems

This commit is contained in:
tomkat83 2016-03-17 13:34:11 +01:00
parent 9f8343113a
commit 908dfd2fe3

View file

@ -730,7 +730,7 @@ class Kodidb_Functions():
Returns all Kodi Item idFile that have not yet been completely played Returns all Kodi Item idFile that have not yet been completely played
""" """
query = ' '.join(( query = ' '.join((
"SELECT idPath", "SELECT idSong",
"FROM song", "FROM song",
"WHERE iTimesPlayed IS NULL OR iTimesPlayed = ''" "WHERE iTimesPlayed IS NULL OR iTimesPlayed = ''"
)) ))