Browse Source

Fixes classification issues for determining if a show is air-by-date or sports or regular

tags/release_0.1.0
echel0n 11 years ago
parent
commit
d14581b8cc
  1. 2
      sickbeard/show_queue.py

2
sickbeard/show_queue.py

@ -296,7 +296,7 @@ class QueueItemAdd(ShowQueueItem):
# be smartish about this
if self.show.genre and "talk show" in self.show.genre.lower():
self.show.air_by_date = 1
elif self.show.genre and "sports" in self.show.genre.lower():
elif self.show.classification and "sports" in self.show.classification.lower():
self.show.sports = 1

Loading…
Cancel
Save