Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/b37829dfbfc5d5a2b9deb4a662979e0f4910a8bd
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -1,7 +1,6 @@
using System ;
using System.IO ;
using Emby.Server.Implementations.Data ;
using Emby.Server.Implementations.Serialization ;
using Jellyfin.Data.Entities ;
using Jellyfin.Data.Enums ;
using Jellyfin.Extensions.Json ;
@ -10,6 +9,7 @@ using Jellyfin.Server.Implementations.Users;
using MediaBrowser.Controller ;
using MediaBrowser.Controller.Entities ;
using MediaBrowser.Model.Configuration ;
using MediaBrowser.Model.Serialization ;
using MediaBrowser.Model.Users ;
using Microsoft.Extensions.Logging ;
using SQLitePCL.pretty ;
@ -27,7 +27,7 @@ namespace Jellyfin.Server.Migrations.Routines
private readonly ILogger < MigrateUserDb > _logger ;
private readonly IServerApplicationPaths _paths ;
private readonly JellyfinDbProvider _provider ;
private readonly My XmlSerializer _xmlSerializer ;
private readonly I XmlSerializer _xmlSerializer ;
/// <summary>
/// Initializes a new instance of the <see cref="MigrateUserDb"/> class.
@ -40,7 +40,7 @@ namespace Jellyfin.Server.Migrations.Routines
ILogger < MigrateUserDb > logger ,
IServerApplicationPaths paths ,
JellyfinDbProvider provider ,
My XmlSerializer xmlSerializer )
I XmlSerializer xmlSerializer )
{
_logger = logger ;
_paths = paths ;