Skip to content

Commit

Permalink
Fixed it in SIFAS too cause I'm just that nice
Browse files Browse the repository at this point in the history
  • Loading branch information
DemonicSavage committed Nov 30, 2023
1 parent 8f8e2df commit 76a8d6c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/mikan/plugins/sifasstills.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ async def create_item(self, data: ClientResponse) -> list[str]:

if isinstance(top_item := page.find(class_="top-item"), bs4.Tag):
links = top_item.find_all("a")
url: str = links[0].get("href")

return [url]
return [link.get("href") for link in links]

raise ParsingError("An error occured while getting a still.")

0 comments on commit 76a8d6c

Please sign in to comment.