diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-04-03 23:13:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-03 23:13:04 +0200 |
| commit | 0b21494999f8a7e70cc137152e94c40a9b1c666b (patch) | |
| tree | f0e39a8471e19da93272a3958fe069b2a171d7dd /Emby.Server.Implementations/Data/SqliteItemRepository.cs | |
| parent | d6224ddedab49c8a4c95176de4fece1c73348e09 (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.cs | 2 |
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)) |
