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