update sync task

This commit is contained in:
Luke Pulverenti
2016-03-20 23:04:44 -04:00
parent 63fe0239e3
commit 52a42229cd
6 changed files with 41 additions and 13 deletions

View File

@@ -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)