mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-26 02:36:10 +00:00
Fix full syncs with new actors
This commit is contained in:
parent
96bdbefb8c
commit
77f06b0817
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ class Kodi(object):
|
||||||
'''Retrieve person from the database, or add them if they don't exist
|
'''Retrieve person from the database, or add them if they don't exist
|
||||||
'''
|
'''
|
||||||
resp = self.cursor.execute(QU.get_person, args).fetchone()
|
resp = self.cursor.execute(QU.get_person, args).fetchone()
|
||||||
if len(resp) > 0:
|
if resp is not None:
|
||||||
return resp[0]
|
return resp[0]
|
||||||
else:
|
else:
|
||||||
return self.add_person(*args)
|
return self.add_person(*args)
|
||||||
|
|
Loading…
Reference in a new issue