Fix ValueError: invalid literal for int() with base 10 during show sync
This commit is contained in:
parent
096046347b
commit
06cc2b6cde
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ class FillMetadataQueue(common.LibrarySyncMixin,
|
|||
checksum = int('{}{}'.format(
|
||||
plex_id,
|
||||
xml.get('updatedAt',
|
||||
xml.get('addedAt', '1541572987'))))
|
||||
xml.get('addedAt', '1541572987')).replace('-', '')))
|
||||
if (not self.repair and
|
||||
plexdb.checksum(plex_id, section.plex_type) == checksum):
|
||||
continue
|
||||
|
|
Loading…
Reference in a new issue