diff --git a/gui/slick/interfaces/default/comingEpisodes.tmpl b/gui/slick/interfaces/default/comingEpisodes.tmpl
index 8b654896..f4d1e434 100644
--- a/gui/slick/interfaces/default/comingEpisodes.tmpl
+++ b/gui/slick/interfaces/default/comingEpisodes.tmpl
@@ -120,6 +120,7 @@
#for $cur_result in $sql_results:
+ #set $cur_indexer = int($cur_result["indexer"])
#if int($cur_result["paused"]) and not $sickbeard.COMING_EPS_DISPLAY_PAUSED:
#continue
@@ -167,7 +168,12 @@
#end if
- |
+ |
|
@@ -206,6 +212,8 @@
#end if
#for $cur_result in $sql_results:
+ #set $cur_indexer = int($cur_result["indexer"])
+
#if int($cur_result["paused"]) and not $sickbeard.COMING_EPS_DISPLAY_PAUSED:
@@ -303,7 +311,12 @@
#if $cur_result["imdb_id"]:
#end if
-
+
diff --git a/sickbeard/show_queue.py b/sickbeard/show_queue.py
index 437d4bae..674051b0 100644
--- a/sickbeard/show_queue.py
+++ b/sickbeard/show_queue.py
@@ -269,7 +269,7 @@ class QueueItemAdd(ShowQueueItem):
self._finishEarly()
return
except Exception, e:
- logger.log(u"Unable to find show ID:" + str(self.indexer_id) + "on Indexer: " + sickbeard.indexerApi(
+ logger.log(u"Unable to find show ID:" + str(self.indexer_id) + " on Indexer: " + sickbeard.indexerApi(
self.indexer).name, logger.ERROR)
ui.notifications.error("Unable to add show",
"Unable to look up the show in " + self.showDir + " on " + sickbeard.indexerApi(
diff --git a/sickbeard/tvcache.py b/sickbeard/tvcache.py
index 9ed68de8..9aff865c 100644
--- a/sickbeard/tvcache.py
+++ b/sickbeard/tvcache.py
@@ -292,7 +292,7 @@ class TVCache():
except (MultipleShowObjectsException):
showObj = None
if showObj:
- self.indexer = showObj.indexer
+ self.indexer = int(showObj.indexer)
indexer_lang = showObj.lang
# if we weren't provided with season/episode information then get it from the name that we parsed