aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2024-12-19 00:10:47 +0000
committerJPVenson <github@jpb.email>2024-12-19 00:10:47 +0000
commitdcfbf55794ae5f273a63bc976d2e8dcc8a2c574d (patch)
tree9f30b185f5f796283da983cac47089fd19a49db0 /Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
parenta0c568bc6c9944fab8b6d1d6d420a9716bdab1e9 (diff)
Fixed linter
Diffstat (limited to 'Jellyfin.Server.Implementations/Item/BaseItemRepository.cs')
-rw-r--r--Jellyfin.Server.Implementations/Item/BaseItemRepository.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
index 4f8fe467a..e087bd328 100644
--- a/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
+++ b/Jellyfin.Server.Implementations/Item/BaseItemRepository.cs
@@ -40,12 +40,12 @@ using BaseItemEntity = Jellyfin.Data.Entities.BaseItemEntity;
namespace Jellyfin.Server.Implementations.Item;
-
/*
All queries in this class and all other nullable enabled EFCore repository classes will make libraral use of the null-forgiving operator "!".
This is done as the code isn't actually executed client side, but only the expressions are interpretet and the compiler cannot know that.
This is your only warning/message regarding this topic.
*/
+
/// <summary>
/// Handles all storage logic for BaseItems.
/// </summary>