diff --git a/CHANGES.md b/CHANGES.md index 11a27f7f..edd0e02f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -87,6 +87,7 @@ * Change Special link moved from "Season" line to "Specials" line on displayShow * Change code re-factored in readiness for live option switching, clean up and add closures of html tables * Add show overview from indexers to the database +* Fix genre tags on displayShow when imdb is disabled [develop changelog] * Fix traceback error when using the menu item Manage/Update Kodi diff --git a/gui/slick/css/style.css b/gui/slick/css/style.css index e68f5363..4e446de3 100644 --- a/gui/slick/css/style.css +++ b/gui/slick/css/style.css @@ -1170,10 +1170,6 @@ body#display-show .back-art .sickbeardTable{ cursor:default } -.no-labels #details-top{ - height:43px -} - #details-top{ height:70px } diff --git a/gui/slick/interfaces/default/displayShow.tmpl b/gui/slick/interfaces/default/displayShow.tmpl index 541b1f10..4d340cfe 100644 --- a/gui/slick/interfaces/default/displayShow.tmpl +++ b/gui/slick/interfaces/default/displayShow.tmpl @@ -62,7 +62,7 @@ //--> -
+
@@ -170,10 +170,9 @@ $displayshowlist.append('\t\t\t' % $curShowType)

$show.name

#if not $sickbeard.USE_IMDB_INFO or not $show.imdbid -## Disabling these trackt tags as they 404 on trakt2.0, remove False to re-enable - #if False and $show.genre: - #for $genre in $show.genre[1:-1].split('|') - $genre + #if $show.genre: + #for $genre in $show.genre[1:-1].replace('Science-Fiction','Sci-Fi').split('|') + $genre #end for #end if #end if