Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/911139e2d57d22c4ddc0fb0a50997d6d235c3a3c?style=split&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed provider Ids not queried with baseItems

pull/12798/head
JPVenson 4 months ago
parent 6b777f9d43
commit 911139e2d5

@ -224,6 +224,7 @@ public sealed class BaseItemRepository(
using var context = dbProvider.CreateDbContext(); using var context = dbProvider.CreateDbContext();
IQueryable<BaseItemEntity> dbQuery = context.BaseItems.AsNoTracking() IQueryable<BaseItemEntity> dbQuery = context.BaseItems.AsNoTracking()
.Include(e => e.TrailerTypes) .Include(e => e.TrailerTypes)
.Include(e => e.Provider)
.Include(e => e.Images) .Include(e => e.Images)
.Include(e => e.LockedFields); .Include(e => e.LockedFields);
dbQuery = TranslateQuery(dbQuery, context, filter) dbQuery = TranslateQuery(dbQuery, context, filter)

Loading…
Cancel
Save