mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
parent
30f0f9bc4f
commit
4fdadb8b27
1 changed files with 1 additions and 2 deletions
|
@ -126,7 +126,6 @@ class Music(Kodi):
|
|||
try:
|
||||
if musicbrainz is not None:
|
||||
self.cursor.execute(QU.get_album, (musicbrainz,))
|
||||
album = None
|
||||
else:
|
||||
self.cursor.execute(QU.get_album_by_name, (name,))
|
||||
album = self.cursor.fetchone()
|
||||
|
@ -134,7 +133,7 @@ class Music(Kodi):
|
|||
if album[1] and album[1] not in artists.split(' / '):
|
||||
raise TypeError
|
||||
|
||||
album_id = (album or self.cursor.fetchone())[0]
|
||||
album_id = self.cursor.fetchone()[0]
|
||||
except TypeError:
|
||||
album_id = self.add_album(*(album_id, name, musicbrainz,) + args)
|
||||
|
||||
|
|
Loading…
Reference in a new issue