Skip to content

Commit

Permalink
Merge pull request #698 from ArjixWasTaken/patch-32
Browse files Browse the repository at this point in the history
fix #697
  • Loading branch information
AbdullahM0hamed committed Jun 30, 2021
2 parents 50b14ff + 9c9221c commit c030fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anime_downloader/sites/animerush.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def search(cls, query):

def _scrape_episodes(self):
soup = helpers.soupify(helpers.get(self.url)).select('div.episode_list > a')
return ['https:' + i.get('href') for i in soup[::-1]]
return ['https:' + i.get('href') for i in soup[::-1] if "Coming soon" not in str(i)]

def _scrape_metadata(self):
soup = helpers.soupify(helpers.get(self.url))
Expand Down

0 comments on commit c030fde

Please sign in to comment.