1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Fixed scene numbering, was not being converted to a int before.

This commit is contained in:
echel0n 2014-04-22 18:58:35 -07:00
parent 18e8b7a5aa
commit 5b69783e86

View File

@ -831,10 +831,10 @@ class History:
for sql_result in sqlResults:
if not any((history['show_id'] == sql_result['showid'] \
and history['season'] == sql_result['season'] \
and history['episode'] == sql_result['episode'] \
and history['quality'] == sql_result['quality']) \
if not any((history['show_id'] == sql_result['showid']
and history['season'] == sql_result['season']
and history['episode'] == sql_result['episode']
and history['quality'] == sql_result['quality'])
for history in compact):
history = {}
@ -3382,6 +3382,7 @@ class Home:
logger.log(u"setEpisodeSceneNumbering for %s from %sx%s to %sx%s" %
(show, forSeason, forEpisode, sceneSeason, sceneEpisode), logger.DEBUG)
show = int(show)
forSeason = int(forSeason)
forEpisode = int(forEpisode)
if sceneSeason is not None: sceneSeason = int(sceneSeason)
@ -3510,6 +3511,7 @@ class WebInterface:
cache_obj = image_cache.ImageCache()
image_file_name = None
if which == 'poster':
image_file_name = cache_obj.poster_path(showObj.indexerid)
if which == 'poster_thumb':