Skip to content

Commit

Permalink
Fixed TokyoTosho Daily (RSS) search.
Browse files Browse the repository at this point in the history
* You can't check if the show is anime, if there is no show provided, as with RSS searches. Duhhhh.
  • Loading branch information
p0psicles committed May 27, 2016
1 parent ffa6a4e commit 17f08d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickbeard/providers/tokyotoshokan.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self):

def search(self, search_strings, age=0, ep_obj=None): # pylint: disable=too-many-locals
results = []
if not self.show or not self.show.is_anime:
if self.show and not self.show.is_anime:
return results

for mode in search_strings:
Expand Down

0 comments on commit 17f08d1

Please sign in to comment.