Skip to content

Commit 4e7c629

Browse files
committed
Skip unplayable live manifests #1377
- tv client live manifests are no longer directly playable without nsig decoding - Failing tv client player requests allowed playable manifests to be used - Once tv client player requests were fixed unplayable manifests need to be explicitly skipped
1 parent b9f32b2 commit 4e7c629

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

resources/lib/youtube_plugin/youtube/client/player_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1425,7 +1425,7 @@ def _process_url_params(self,
14251425
params = parse_qs(parts.query)
14261426
new_params = {}
14271427

1428-
if 'n' not in params:
1428+
if 'n' not in params and '/n/' not in parts.path:
14291429
pass
14301430
elif not self._calculate_n:
14311431
self.log.debug('Decoding of nsig value disabled')

0 commit comments

Comments
 (0)