Skip to content

Commit

Permalink
Fix parsing specials. (season 0, ep x) (#9812)
Browse files Browse the repository at this point in the history
  • Loading branch information
p0psicles authored Aug 20, 2021
1 parent 6c80892 commit 8a4084d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion medusa/name_parser/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def _parse_string(self, name):
elif result.series.is_anime or result.is_anime:
new_episode_numbers, new_season_numbers, new_absolute_numbers = self._parse_anime(result)

elif result.season_number:
elif result.season_number is not None:
new_episode_numbers, new_season_numbers, new_absolute_numbers = self._parse_series(result)

else:
Expand Down

0 comments on commit 8a4084d

Please sign in to comment.