Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/1009836a792f5b76829b8ec9b2a6d859d2cde298
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
12 additions and
1 deletions
@ -8,6 +8,10 @@
<!-- Code analysers -->
<ItemGroup Condition= " '$(Configuration)' == 'Debug' " >
<PackageReference Include= "IDisposableAnalyzers" >
<PrivateAssets > all</PrivateAssets>
<IncludeAssets > runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include= "Microsoft.CodeAnalysis.BannedApiAnalyzers" >
<PrivateAssets > all</PrivateAssets>
<IncludeAssets > runtime; build; native; contentfiles; analyzers</IncludeAssets>
@ -4,6 +4,7 @@
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Threading.Tasks ;
using Jellyfin.Data.Entities ;
using MediaBrowser.Controller ;
using Microsoft.EntityFrameworkCore ;
@ -13,7 +14,7 @@ namespace Jellyfin.Server.Implementations.Users
/// <summary>
/// Manages the storage and retrieval of display preferences through Entity Framework.
/// </summary>
public class DisplayPreferencesManager : IDisplayPreferencesManager
public sealed class DisplayPreferencesManager : IDisplayPreferencesManager , IAsyncDisposable
{
private readonly JellyfinDbContext _dbContext ;
@ -97,5 +98,11 @@ namespace Jellyfin.Server.Implementations.Users
{
_dbContext . SaveChanges ( ) ;
}
/// <inheritdoc />
public async ValueTask DisposeAsync ( )
{
await _dbContext . DisposeAsync ( ) . ConfigureAwait ( false ) ;
}
}
}