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:
parent
a97dcad291
commit
d14581b8cc
@ -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…
Reference in New Issue
Block a user