Skip to content

Commit

Permalink
Fix web detection
Browse files Browse the repository at this point in the history
  • Loading branch information
labrys committed Mar 13, 2016
1 parent 0d6aaa3 commit b8e126e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickrage/tagger/episode.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def web(self):
else:
attr = 'web'
match = self._get_match_obj(attr)
return '' if not match else match.group('type')
return '' if not match else match.group('type') or match.group(0)

@property
def sat(self):
Expand Down

0 comments on commit b8e126e

Please sign in to comment.