Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/468283bfb2cd7120b53e32cea67fd0c055d38812
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -8,13 +8,13 @@ using Jellyfin.Data.Enums;
using Xunit ;
using Xunit.Sdk ;
namespace Jellyfin.Server.Implementations.Tests. BaseItem
namespace Jellyfin.Server.Implementations.Tests. Typed BaseItem
{
public class BaseItemKindTests
{
[Theory]
[ClassData(typeof(GetBaseItemDescendants))]
public void BaseItemKindEnumTest ( Type baseItemType )
public void EnumParse_GivenValidBaseItemType_ReturnsEnumValue ( Type baseItemType )
{
var enumValue = Enum . Parse < BaseItemKind > ( baseItemType . Name ) ;
Assert . True ( Enum . IsDefined ( typeof ( BaseItemKind ) , enumValue ) ) ;
@ -22,7 +22,7 @@ namespace Jellyfin.Server.Implementations.Tests.BaseItem
[Theory]
[ClassData(typeof(GetBaseItemDescendants))]
public void GetBase KindEnumTest ( Type baseItemDescendantType )
public void GetBase ItemKind_WhenCalledAfterDefaultCtor_DoesNotThrow ( Type baseItemDescendantType )
{
var defaultConstructor = baseItemDescendantType . GetConstructor ( Type . EmptyTypes ) ;
var instance = ( MediaBrowser . Controller . Entities . BaseItem ) defaultConstructor ! . Invoke ( null ) ;