master
Arjix 2021-01-27 16:33:05 +02:00 committed by GitHub
parent 6cfb3f3062
commit 61b7927207
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -66,4 +66,6 @@ class Shiro(Anime, sitename='shiro'):
class ShiroEpisode(AnimeEpisode, sitename='shiro'):
def _get_sources(self):
return [('no_extractor', self.url)]
r = helpers.get(self.url).text
link = re.search(r'\"file\"\:\"(.*?)\"', r)[1]
return [('no_extractor', link)]