Fix deleting music album not working
This commit is contained in:
parent
678544d236
commit
d03b68b4e1
1 changed files with 1 additions and 1 deletions
|
@ -956,7 +956,7 @@ class KodiDBMethods(object):
|
|||
return
|
||||
query = '''
|
||||
DELETE FROM discography
|
||||
WHERE idArtist = ?, strAlbum = ?, strYear = ?
|
||||
WHERE idArtist = ? AND strAlbum = ? AND strYear = ?
|
||||
'''
|
||||
self.cursor.execute(query, (artist[0], name, year))
|
||||
|
||||
|
|
Loading…
Reference in a new issue