Fix float() argument must be a string or a number

This commit is contained in:
croneter 2019-03-16 17:34:47 +01:00
parent 98975ff23d
commit c6e635b39b

View file

@ -90,9 +90,9 @@ def sync_pms_time():
# Toggle watched state back # Toggle watched state back
PF.scrobble(plex_id, 'unwatched') PF.scrobble(plex_id, 'unwatched')
try: try:
plextime = xml[0].get('lastViewedAt') plextime = xml[0].attrib['lastViewedAt']
except (IndexError, TypeError, AttributeError): except (IndexError, TypeError, AttributeError, KeyError):
LOG.error('Could not get lastViewedAt - aborting') LOG.warn('Could not get lastViewedAt - aborting')
return False return False
# Calculate time offset Kodi-PMS # Calculate time offset Kodi-PMS