From 24dc91160d33e9b1ea8edd1f4262b8ecb14db930 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 20 Nov 2016 15:31:55 -0500 Subject: update activity log --- Emby.Server.Implementations/Data/SqliteItemRepository.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Emby.Server.Implementations/Data') diff --git a/Emby.Server.Implementations/Data/SqliteItemRepository.cs b/Emby.Server.Implementations/Data/SqliteItemRepository.cs index e4ceca267..255235cc7 100644 --- a/Emby.Server.Implementations/Data/SqliteItemRepository.cs +++ b/Emby.Server.Implementations/Data/SqliteItemRepository.cs @@ -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()); } } } -- cgit v1.2.3