Merge pull request #1312 from croneter/os-error
Fix OSError: Invalid argument when Plex returns an invalid timestamp
This commit is contained in:
commit
2884054fd4
1 changed files with 10 additions and 1 deletions
|
@ -1,9 +1,12 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import absolute_import, division, unicode_literals
|
||||
from logging import getLogger
|
||||
from datetime import datetime, timedelta
|
||||
from time import localtime, strftime
|
||||
|
||||
LOG = getLogger('PLEX.timing')
|
||||
|
||||
EPOCH = datetime.utcfromtimestamp(0)
|
||||
|
||||
|
||||
|
@ -29,7 +32,13 @@ def unix_date_to_kodi(unix_kodi_time):
|
|||
|
||||
Output: Y-m-d h:m:s = 2009-04-05 23:16:04
|
||||
"""
|
||||
try:
|
||||
return strftime('%Y-%m-%d %H:%M:%S', localtime(float(unix_kodi_time)))
|
||||
except Exception:
|
||||
LOG.exception('Received an illegal timestamp from Plex: %s. '
|
||||
'Using 1970-01-01 12:00:00',
|
||||
unix_kodi_time)
|
||||
return '1970-01-01 12:00:00'
|
||||
|
||||
|
||||
def plex_date_to_kodi(plex_timestamp):
|
||||
|
|
Loading…
Reference in a new issue