mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-10 01:38:49 +01:00
update sync task
This commit is contained in:
@@ -2080,6 +2080,18 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||
}
|
||||
}
|
||||
|
||||
if (query.HasOverview.HasValue)
|
||||
{
|
||||
if (query.HasOverview.Value)
|
||||
{
|
||||
whereClauses.Add("(Overview not null AND Overview<>'')");
|
||||
}
|
||||
else
|
||||
{
|
||||
whereClauses.Add("(Overview is null OR Overview='')");
|
||||
}
|
||||
}
|
||||
|
||||
if (query.HasDeadParentId.HasValue)
|
||||
{
|
||||
if (query.HasDeadParentId.Value)
|
||||
|
||||
Reference in New Issue
Block a user