Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/cb9079e0bd611e811d5f6b4be9bc59ffada6addc
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
4 deletions
@ -34,7 +34,6 @@ namespace MediaBrowser.Api.UserLibrary
/// The _user manager
/// </summary>
private readonly IUserManager _userManager ;
private readonly IUserDataManager _userDataRepository ;
/// <summary>
/// The _library manager
@ -43,7 +42,6 @@ namespace MediaBrowser.Api.UserLibrary
private readonly ILocalizationManager _localization ;
private readonly IDtoService _dtoService ;
private readonly ICollectionManager _collectionManager ;
/// <summary>
/// Initializes a new instance of the <see cref="ItemsService" /> class.
@ -58,10 +56,8 @@ namespace MediaBrowser.Api.UserLibrary
{
_userManager = userManager ;
_libraryManager = libraryManager ;
_userDataRepository = userDataRepository ;
_localization = localization ;
_dtoService = dtoService ;
_collectionManager = collectionManager ;
}
/// <summary>
@ -71,6 +71,8 @@ namespace MediaBrowser.Server.Implementations.Persistence
"create unique index if not exists UserDataDb.userdataindex on userdata (key, userId)" ,
"create index if not exists UserDataDb.userdataindex2 on userdata (key, userId, played)" ,
"create index if not exists UserDataDb.userdataindex3 on userdata (key, userId, playbackPositionTicks)" ,
"create index if not exists UserDataDb.userdataindex4 on userdata (key, userId, isFavorite)" ,
//pragmas
"pragma temp_store = memory" ,