Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/cbcadbf892b9546ec6b6d1ce821401dfa463a090
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
4 additions and
3 deletions
@ -503,7 +503,8 @@ namespace MediaBrowser.Controller.Entities
{
if ( ! string . IsNullOrWhiteSpace ( ForcedSortName ) )
{
_sortName = ModifySortChunks ( ForcedSortName ) ;
// Need the ToLower because that's what CreateSortName does
_sortName = ModifySortChunks ( ForcedSortName ) . ToLower ( ) ;
}
else
{
@ -32,7 +32,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
private readonly ILocalizationManager _localization ;
private readonly ITaskManager _taskManager ;
public const int MigrationVersion = 2 2 ;
public const int MigrationVersion = 2 3 ;
public static bool EnableUnavailableMessage = false ;
public CleanDatabaseScheduledTask ( ILibraryManager libraryManager , IItemRepository itemRepo , ILogger logger , IServerConfigurationManager config , IFileSystem fileSystem , IHttpServer httpServer , ILocalizationManager localization , ITaskManager taskManager )
@ -79,7 +79,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
private IDbCommand _updateInheritedRatingCommand ;
private const int LatestSchemaVersion = 5 7 ;
private const int LatestSchemaVersion = 5 8 ;
/// <summary>
/// Initializes a new instance of the <see cref="SqliteItemRepository"/> class.