mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
Fixed Movie RecentlyAdded
This commit is contained in:
parent
b830c42fca
commit
96d9bb83a3
@ -710,7 +710,7 @@ public sealed class BaseItemRepository(
|
||||
if (filter.IsPlayed.HasValue)
|
||||
{
|
||||
baseQuery = baseQuery
|
||||
.Where(e => e.UserData!.FirstOrDefault(f => f.UserId == filter.User!.Id)!.Played == filter.IsPlayed.Value);
|
||||
.Where(e => e.UserData!.FirstOrDefault(f => f.UserId == filter.User!.Id)!.Played == filter.IsPlayed.Value || e.UserData!.FirstOrDefault(f => f.UserId == filter.User!.Id) == null);
|
||||
}
|
||||
|
||||
if (filter.IsResumable.HasValue)
|
||||
|
Loading…
x
Reference in New Issue
Block a user