[udemy,xiami,yandexmusic] Override _download_webpage_handle instead of _download_webpage

This commit is contained in:
Sergey M․ 2018-04-29 22:49:47 +07:00
parent 30226342ab
commit e5eadfa82f
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D
3 changed files with 6 additions and 6 deletions

View file

@ -9,8 +9,8 @@ from ..utils import int_or_none
class XiamiBaseIE(InfoExtractor):
_API_BASE_URL = 'http://www.xiami.com/song/playlist/cat/json/id'
def _download_webpage(self, *args, **kwargs):
webpage = super(XiamiBaseIE, self)._download_webpage(*args, **kwargs)
def _download_webpage_handle(self, *args, **kwargs):
webpage = super(XiamiBaseIE, self)._download_webpage_handle(*args, **kwargs)
if '>Xiami is currently not available in your country.<' in webpage:
self.raise_geo_restricted('Xiami is currently not available in your country')
return webpage