mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-08 11:03:38 +00:00
Fix for KeyError: None in displayShows
This commit is contained in:
parent
61e1e5d2c2
commit
3e78004d36
1 changed files with 6 additions and 4 deletions
|
@ -873,6 +873,7 @@ class Manage(MainHandler):
|
||||||
|
|
||||||
for curResult in sqlResults:
|
for curResult in sqlResults:
|
||||||
curEpCat = curShow.getOverview(int(curResult["status"]))
|
curEpCat = curShow.getOverview(int(curResult["status"]))
|
||||||
|
if curEpCat:
|
||||||
epCats[str(curResult["season"]) + "x" + str(curResult["episode"])] = curEpCat
|
epCats[str(curResult["season"]) + "x" + str(curResult["episode"])] = curEpCat
|
||||||
epCounts[curEpCat] += 1
|
epCounts[curEpCat] += 1
|
||||||
|
|
||||||
|
@ -3429,6 +3430,7 @@ class Home(MainHandler):
|
||||||
|
|
||||||
for curResult in sqlResults:
|
for curResult in sqlResults:
|
||||||
curEpCat = showObj.getOverview(int(curResult["status"]))
|
curEpCat = showObj.getOverview(int(curResult["status"]))
|
||||||
|
if curEpCat:
|
||||||
epCats[str(curResult["season"]) + "x" + str(curResult["episode"])] = curEpCat
|
epCats[str(curResult["season"]) + "x" + str(curResult["episode"])] = curEpCat
|
||||||
epCounts[curEpCat] += 1
|
epCounts[curEpCat] += 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue