update activity log

This commit is contained in:
Luke Pulverenti
2016-11-20 15:31:55 -05:00
parent 827602711e
commit 24dc91160d
2 changed files with 27 additions and 12 deletions

View File

@@ -3860,7 +3860,7 @@ namespace Emby.Server.Implementations.Data
whereClauses.Add("LocationType=@LocationType");
if (statement != null)
{
statement.TryBind("LocationType", query.LocationTypes[0].ToString());
statement.TryBind("@LocationType", query.LocationTypes[0].ToString());
}
}
}
@@ -3881,7 +3881,7 @@ namespace Emby.Server.Implementations.Data
whereClauses.Add("LocationType<>@ExcludeLocationTypes");
if (statement != null)
{
statement.TryBind("ExcludeLocationTypes", query.ExcludeLocationTypes[0].ToString());
statement.TryBind("@ExcludeLocationTypes", query.ExcludeLocationTypes[0].ToString());
}
}
}