Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/46b9ebd48e82883f6f0936c84331494d69dbacf5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
25 additions and
13 deletions
@ -54,11 +54,23 @@ namespace MediaBrowser.Providers.Omdb
if ( ! string . IsNullOrEmpty ( rootObject . Poster ) )
{
list . Add ( new RemoteImageInfo
if ( item is Episode )
{
ProviderName = Name ,
Url = string . Format ( "https://img.omdbapi.com/?i={0}&apikey=82e83907" , imdbId )
} ) ;
// img.omdbapi.com returning 404's
list . Add ( new RemoteImageInfo
{
ProviderName = Name ,
Url = rootObject . Poster
} ) ;
}
else
{
list . Add ( new RemoteImageInfo
{
ProviderName = Name ,
Url = string . Format ( "https://img.omdbapi.com/?i={0}&apikey=82e83907" , imdbId )
} ) ;
}
}
}
@ -23,14 +23,14 @@ namespace MediaBrowser.Server.Startup.Common
{
if ( ! startupOptions . ContainsOption ( "-enablegdi" ) )
{
// try
// {
// return new SkiaEncoder(logManager.GetLogger("Skia"), appPaths, httpClient, fileSystem);
// }
// catch
// {
// logger.Error("Error loading Skia. Will revert to ImageMagick.");
// }
try
{
return new SkiaEncoder ( logManager . GetLogger ( "Skia" ) , appPaths , httpClient , fileSystem ) ;
}
catch
{
logger . Error ( "Error loading Skia. Will revert to ImageMagick." ) ;
}
try
{
@ -1,3 +1,3 @@
using System.Reflection ;
[assembly: AssemblyVersion("3.2.19. 5 ")]
[assembly: AssemblyVersion("3.2.19. 6 ")]