[CCMA] Avoid exception when 'utc' is not found

This commit is contained in:
Guillem Vela 2020-02-28 00:27:01 +01:00
parent 8c60c29d34
commit b4a7030620
1 changed files with 5 additions and 2 deletions

View File

@ -88,8 +88,11 @@ class CCMAIE(InfoExtractor):
# utc date is in format YYYY-DD-MM
data_utc = informacio.get('data_emissio', {}).get('utc')
data_iso8601 = data_utc[:5] + data_utc[8:10] + '-' + data_utc[5:7] + data_utc[10:]
timestamp = parse_iso8601(data_iso8601)
try:
data_iso8601 = data_utc[:5] + data_utc[8:10] + '-' + data_utc[5:7] + data_utc[10:]
timestamp = parse_iso8601(data_iso8601)
except TypeError:
timestamp = None
subtitles = {}
subtitols = media.get('subtitols', [])