Skip to content

Commit

Permalink
Merge pull request #585 from AbdullahM0hamed/streamtape
Browse files Browse the repository at this point in the history
fix streamtape regex
  • Loading branch information
AbdullahM0hamed committed Nov 30, 2020
2 parents 5849e81 + b1c1234 commit 93a3bb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anime_downloader/extractors/streamtape.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def _get_data(self):
resp = helpers.get(self.url, cache=False).text
url = "https:" + \
re.search(
"document\.getElementById\([\"']videolink[\"']\)\.innerHTML.*?=.*?[\"'](.*?)[\"']", resp).group(1)
"document\.getElementById\([\"']videolink[\"']\);.*?innerHTML.*?=.*?[\"'](.*?)[\"']", resp).group(1)

return {
'stream_url': url,
Expand Down

0 comments on commit 93a3bb1

Please sign in to comment.