aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Data/SqliteItemRepository.cs
diff options
context:
space:
mode:
authorJan-Pieter Baert <jan-pieter@baert.jp.net>2020-10-12 19:22:33 +0200
committerJan-Pieter Baert <jan-pieter@baert.jp.net>2020-10-12 19:22:33 +0200
commit6f9beef7323cf133af481d003c7db7a7c6abc6dd (patch)
treeab64dbc816de7c803d790dc651e2b25541fe089c /Emby.Server.Implementations/Data/SqliteItemRepository.cs
parent2375c35c4a966a469dd97f33deb57b342498b905 (diff)
Fix SA1012 and SA1013 warnings
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 d09f84e17..86a9908be 100644
--- a/Emby.Server.Implementations/Data/SqliteItemRepository.cs
+++ b/Emby.Server.Implementations/Data/SqliteItemRepository.cs
@@ -5357,7 +5357,7 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type
itemCountColumns = new Dictionary<string, string>()
{
- { "itemTypes", "(" + itemCountColumnQuery + ") as itemTypes"}
+ { "itemTypes", "(" + itemCountColumnQuery + ") as itemTypes" }
};
}