mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-20 16:43:43 +00: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
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue