Skip to content

Commit

Permalink
[go] fix adobe pass requests for Disney Now(closes #18901)
Browse files Browse the repository at this point in the history
  • Loading branch information
remitamine committed Jan 23, 2019
1 parent 9713d1d commit 118afcf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions youtube_dl/extractor/go.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ class GoIE(AdobePassIE):
},
'watchdisneychannel': {
'brand': '004',
'requestor_id': 'Disney',
'resource_id': 'Disney',
},
'watchdisneyjunior': {
'brand': '008',
'requestor_id': 'DisneyJunior',
'resource_id': 'DisneyJunior',
},
'watchdisneyxd': {
'brand': '009',
'requestor_id': 'DisneyXD',
'resource_id': 'DisneyXD',
}
}
_VALID_URL = r'https?://(?:(?P<sub_domain>%s)\.)?go\.com/(?:(?:[^/]+/)*(?P<id>vdka\w+)|(?:[^/]+/)*(?P<display_id>[^/?#]+))'\
Expand Down Expand Up @@ -130,8 +130,8 @@ def _real_extract(self, url):
'device': '001',
}
if video_data.get('accesslevel') == '1':
requestor_id = site_info['requestor_id']
resource = self._get_mvpd_resource(
requestor_id = site_info.get('requestor_id', 'DisneyChannels')
resource = site_info.get('resource_id') or self._get_mvpd_resource(
requestor_id, title, video_id, None)
auth = self._extract_mvpd_auth(
url, video_id, requestor_id, resource)
Expand Down

0 comments on commit 118afcf

Please sign in to comment.