aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheMelmacian <76712303+TheMelmacian@users.noreply.github.com>2026-07-18 10:57:14 +0200
committerTheMelmacian <76712303+TheMelmacian@users.noreply.github.com>2026-07-18 17:56:38 +0200
commit7d83779b6feea56f6f1fa5ebfc2aaf772d32e86e (patch)
tree07e925172ad78a8c8d399720e758823080cc03b9
parent2a44c35224e29498c0d75fd1091e043496b04865 (diff)
fix code style
-rw-r--r--Jellyfin.Api/Controllers/FilterController.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Api/Controllers/FilterController.cs b/Jellyfin.Api/Controllers/FilterController.cs
index 9964a2f4e4..b458bd90f3 100644
--- a/Jellyfin.Api/Controllers/FilterController.cs
+++ b/Jellyfin.Api/Controllers/FilterController.cs
@@ -161,7 +161,7 @@ public class FilterController : BaseJellyfinApiController
var streamLanguageQuery = new InternalItemsQuery(user)
{
// It's possible that different langauges are only available on alternative versions.
- // To fetch them all, owned items are inlcluded.
+ // To fetch them all, owned items are included.
IncludeOwnedItems = true,
IncludeItemTypes = includeItemTypes,
DtoOptions = new DtoOptions
@@ -194,7 +194,7 @@ public class FilterController : BaseJellyfinApiController
&& !includeItemTypes.Contains(BaseItemKind.Episode))
{
// streams are joined on epsiodes not shows or seasons
- streamLanguageQuery.IncludeItemTypes = [..includeItemTypes, BaseItemKind.Episode];
+ streamLanguageQuery.IncludeItemTypes = [.. includeItemTypes, BaseItemKind.Episode];
}
if (includeItemTypes.Length == 1