diff --git a/gui/slick/views/manage_backlogOverview.mako b/gui/slick/views/manage_backlogOverview.mako index 787e0df35b2750e9d146a10b3106dfea2c757203..449418457d9ecb1f435f3f0cd25912fc4d3894a7 100644 --- a/gui/slick/views/manage_backlogOverview.mako +++ b/gui/slick/views/manage_backlogOverview.mako @@ -33,7 +33,6 @@ <span class="listing-key qual">Low Quality: <b>${totalQual}</b></span> </div><br> - <div class="float-left"> Jump to Show <select id="pickShow" class="form-control form-control-inline input-sm"> @@ -60,7 +59,7 @@ Jump to Show % for curResult in showSQLResults[curShow.indexerid]: <% - whichStr = str(curResult['season']) + 'x' + str(curResult['episode']) + whichStr = 'S%02dE%02d' % (curResult['season'], curResult['episode']) if whichStr not in showCats[curShow.indexerid] or showCats[curShow.indexerid][whichStr] not in (Overview.QUAL, Overview.WANTED): continue %> diff --git a/sickbeard/webserve.py b/sickbeard/webserve.py index 219bc0bbc778d834915c99cc12a29ead17e70233..baa9380f1c216e3f0bb78a744afdea2a91a37ccf 100644 --- a/sickbeard/webserve.py +++ b/sickbeard/webserve.py @@ -3057,7 +3057,7 @@ class Manage(Home, WebRoot): for curResult in sqlResults: curEpCat = curShow.getOverview(int(curResult["status"] or -1)) if curEpCat: - epCats[str(curResult["season"]) + "x" + str(curResult["episode"])] = curEpCat + epCats['S%02dE%02d' % (curResult['season'], curResult['episode'])] = curEpCat epCounts[curEpCat] += 1 showCounts[curShow.indexerid] = epCounts