Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/09e8a7e62c9a8ef567f2d336e37a7cc732e3aaab
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
19 additions and
8 deletions
@ -512,13 +512,13 @@ namespace Emby.Naming.Common
MediaType . Video ) ,
new ExtraRule (
ExtraType . Clip ,
ExtraType . Short ,
ExtraRuleType . DirectoryName ,
"shorts" ,
MediaType . Video ) ,
new ExtraRule (
ExtraType . Clip ,
ExtraType . Featurette ,
ExtraRuleType . DirectoryName ,
"featurettes" ,
MediaType . Video ) ,
@ -535,6 +535,12 @@ namespace Emby.Naming.Common
"other" ,
MediaType . Video ) ,
new ExtraRule (
ExtraType . Clip ,
ExtraRuleType . DirectoryName ,
"clips" ,
MediaType . Video ) ,
new ExtraRule (
ExtraType . Trailer ,
ExtraRuleType . Filename ,
@ -638,13 +644,13 @@ namespace Emby.Naming.Common
MediaType . Video ) ,
new ExtraRule (
ExtraType . Clip ,
ExtraType . Featurette ,
ExtraRuleType . Suffix ,
"-featurette" ,
MediaType . Video ) ,
new ExtraRule (
ExtraType . Clip ,
ExtraType . Short ,
ExtraRuleType . Suffix ,
"-short" ,
MediaType . Video ) ,
@ -75,7 +75,9 @@ namespace MediaBrowser.Controller.Entities
Model . Entities . ExtraType . DeletedScene ,
Model . Entities . ExtraType . Interview ,
Model . Entities . ExtraType . Sample ,
Model . Entities . ExtraType . Scene
Model . Entities . ExtraType . Scene ,
Model . Entities . ExtraType . Featurette ,
Model . Entities . ExtraType . Short
} ;
private string _sortName ;
@ -13,6 +13,8 @@ namespace MediaBrowser.Model.Entities
Scene = 6 ,
Sample = 7 ,
ThemeSong = 8 ,
ThemeVideo = 9
ThemeVideo = 9 ,
Featurette = 10 ,
Short = 11
}
}
@ -51,8 +51,9 @@ namespace Jellyfin.Naming.Tests.Video
[InlineData(ExtraType.Interview, "interviews")]
[InlineData(ExtraType.Scene, "scenes")]
[InlineData(ExtraType.Sample, "samples")]
[InlineData(ExtraType.Clip, "shorts")]
[InlineData(ExtraType.Clip, "featurettes")]
[InlineData(ExtraType.Short, "shorts")]
[InlineData(ExtraType.Featurette, "featurettes")]
[InlineData(ExtraType.Clip, "clips")]
[InlineData(ExtraType.ThemeVideo, "backdrops")]
[InlineData(ExtraType.Unknown, "extras")]
public void TestDirectories ( ExtraType type , string dirName )