aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Data/SqliteItemRepository.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-04-03 23:13:04 +0200
committerGitHub <noreply@github.com>2020-04-03 23:13:04 +0200
commit0b21494999f8a7e70cc137152e94c40a9b1c666b (patch)
treef0e39a8471e19da93272a3958fe069b2a171d7dd /Emby.Server.Implementations/Data/SqliteItemRepository.cs
parentd6224ddedab49c8a4c95176de4fece1c73348e09 (diff)
Update Emby.Server.Implementations/Data/SqliteItemRepository.cs
Co-Authored-By: Vasily <JustAMan@users.noreply.github.com>
Diffstat (limited to 'Emby.Server.Implementations/Data/SqliteItemRepository.cs')
-rw-r--r--Emby.Server.Implementations/Data/SqliteItemRepository.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteItemRepository.cs b/Emby.Server.Implementations/Data/SqliteItemRepository.cs
index 052c4ef8c..46c6d5520 100644
--- a/Emby.Server.Implementations/Data/SqliteItemRepository.cs
+++ b/Emby.Server.Implementations/Data/SqliteItemRepository.cs
@@ -5013,7 +5013,7 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type
if (query.Limit > 0)
{
- commandText += "LIMIT " + query.Limit;
+ commandText += " LIMIT " + query.Limit;
}
using (var connection = GetConnection(true))