mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 05:53:03 +03:00
Fix ArgumentNullException in TmdbExternalUrlProvider (#14130)
This commit is contained in:
@@ -1478,7 +1478,7 @@ public sealed class BaseItemRepository
|
||||
|
||||
if (maxWidth.HasValue)
|
||||
{
|
||||
baseQuery = baseQuery.Where(e => e.Width >= maxWidth);
|
||||
baseQuery = baseQuery.Where(e => e.Width <= maxWidth);
|
||||
}
|
||||
|
||||
if (filter.MaxHeight.HasValue)
|
||||
@@ -1696,7 +1696,7 @@ public sealed class BaseItemRepository
|
||||
|
||||
if (filter.MinPremiereDate.HasValue)
|
||||
{
|
||||
baseQuery = baseQuery.Where(e => e.PremiereDate <= filter.MinPremiereDate.Value);
|
||||
baseQuery = baseQuery.Where(e => e.PremiereDate >= filter.MinPremiereDate.Value);
|
||||
}
|
||||
|
||||
if (filter.MaxPremiereDate.HasValue)
|
||||
|
||||
Reference in New Issue
Block a user