Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/5a0f02007fa26632579ee4d4879b384bff282ded
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
17 additions and
0 deletions
@ -34,6 +34,8 @@ namespace NzbDrone.Core.MetadataSource.SkyHook.Resource
public int vote_count { get ; set ; }
public bool video { get ; set ; }
public float vote_average { get ; set ; }
public string trailer_key { get ; set ; }
public string trailer_site { get ; set ; }
}
@ -591,6 +591,15 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
_logger . Debug ( result ) ;
}
if ( result . trailer_key . IsNotNullOrWhiteSpace ( ) & & result . trailer_site . IsNotNullOrWhiteSpace ( ) )
{
if ( result . trailer_site = = "youtube" )
{
imdbMovie . YouTubeTrailerId = result . trailer_key ;
}
}
return imdbMovie ;
}
catch ( Exception e )
@ -27,6 +27,12 @@
<span class="label label-warning">In Cinemas</span>
{{ / if _ eq }}
<span class="label label-default" title=" {{ ratings .votes }} Vote(s)"> {{ ratings .value }} </span>
{{ # if youTubeTrailerId }}
<span class="label label-info">
<a href=" {{ youTubeTrailerUrl }} " style="color: white;">Trailer</a>
</span>
{{ / if }}
</span>