[VrtNU] Handle empty title (#2147)

Closes #2146
Authored by: pgaig
This commit is contained in:
pgaig 2021-12-31 21:58:23 +01:00 committed by GitHub
parent 497d77e1aa
commit 3464a2727b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,7 +76,7 @@ def _real_extract(self, url):
'vrtPlayerToken': vrtPlayerToken,
'client': 'null',
}, expected_status=400)
if not data.get('title'):
if 'title' not in data:
code = data.get('code')
if code == 'AUTHENTICATION_REQUIRED':
self.raise_login_required()
@ -84,7 +84,8 @@ def _real_extract(self, url):
self.raise_geo_restricted(countries=['BE'])
raise ExtractorError(data.get('message') or code, expected=True)
title = data['title']
# Note: The title may be an empty string
title = data['title'] or f'{site_id} {video_id}'
description = data.get('description')
formats = []