Skip to content

Commit

Permalink
Open the range of pack detection a bit. fix Flexget#1432
Browse files Browse the repository at this point in the history
  • Loading branch information
gazpachoking committed Sep 10, 2013
1 parent 4231740 commit 8754c34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flexget/utils/titles/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ def parse_episode(self, data):
end_episode = None
if len(matches) == 3 and matches[2]:
end_episode = int(matches[2])
if end_episode <= episode or end_episode > episode + 8:
if end_episode <= episode or end_episode > episode + 12:
# end episode cannot be before start episode
# Assume large ranges are not episode packs, ticket #1271 TODO: is this the best way?
end_episode = None
Expand Down

0 comments on commit 8754c34

Please sign in to comment.