Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/aed00733f88fb9a50fc51816fd05a4438c9d5c42?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
7 additions and
7 deletions
@ -86,6 +86,6 @@
<PackageVersion Include="Xunit.Priority" Version="1.1.6" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />
<PackageVersion Include="Xunit.SkippableFact" Version="1.4.13" />
<PackageVersion Include="xunit" Version="2.9.0 " />
<PackageVersion Include="xunit" Version="2.9.1 " />
</ItemGroup>
</Project>
@ -25,8 +25,8 @@ namespace Jellyfin.Naming.Tests.Video
files . Select ( i = > VideoResolver . Resolve ( i , false , _namingOptions ) ) . OfType < VideoFileInfo > ( ) . ToList ( ) ,
_namingOptions ) . ToList ( ) ;
Assert . Single ( result .Where ( v = > v . ExtraType is null ) ) ;
Assert . Single ( result .Where ( v = > v . ExtraType is not null ) ) ;
Assert . Single ( result , v = > v . ExtraType is null ) ;
Assert . Single ( result , v = > v . ExtraType is not null ) ;
}
[Fact]
@ -44,8 +44,8 @@ namespace Jellyfin.Naming.Tests.Video
files . Select ( i = > VideoResolver . Resolve ( i , false , _namingOptions ) ) . OfType < VideoFileInfo > ( ) . ToList ( ) ,
_namingOptions ) . ToList ( ) ;
Assert . Single ( result .Where ( v = > v . ExtraType is null ) ) ;
Assert . Single ( result .Where ( v = > v . ExtraType is not null ) ) ;
Assert . Single ( result , v = > v . ExtraType is null ) ;
Assert . Single ( result , v = > v . ExtraType is not null ) ;
Assert . Equal ( 2 , result [ 0 ] . AlternateVersions . Count ) ;
}
@ -157,7 +157,7 @@ namespace Jellyfin.XbmcMetadata.Tests.Parsers
_parser . Fetch ( result , "Test Data/Sonarr-Thumb.nfo" , CancellationToken . None ) ;
Assert . Single ( result . RemoteImages .Where ( x = > x . Type = = ImageType . Primary ) ) ;
Assert . Single ( result . RemoteImages , x = > x . Type = = ImageType . Primary ) ;
Assert . Equal ( "https://artworks.thetvdb.com/banners/episodes/359095/7081317.jpg" , result . RemoteImages . First ( x = > x . Type = = ImageType . Primary ) . Url ) ;
}
@ -220,7 +220,7 @@ namespace Jellyfin.XbmcMetadata.Tests.Parsers
_parser . Fetch ( result , "Test Data/Fanart.nfo" , CancellationToken . None ) ;
Assert . Single ( result . RemoteImages .Where ( x = > x . Type = = ImageType . Backdrop ) ) ;
Assert . Single ( result . RemoteImages , x = > x . Type = = ImageType . Backdrop ) ;
Assert . Equal ( "https://assets.fanart.tv/fanart/movies/141052/moviebackground/justice-league-5a5332c7b5e77.jpg" , result . RemoteImages . First ( x = > x . Type = = ImageType . Backdrop ) . Url ) ;
}