1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-13 03:22:22 -05:00

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

This commit is contained in:
echel0n 2014-04-29 16:57:01 -07:00
parent a97dcad291
commit d14581b8cc

View File

@ -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