aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Filters
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-10-01 10:40:58 -0600
committercrobibero <cody@robibe.ro>2020-10-01 10:40:58 -0600
commit2b75af987395c242b69f57b636121302eadaee30 (patch)
treec149e670d7c0f7f847f8b01ce834e14cf08d183b /Jellyfin.Server/Filters
parent4a3e0062f9e4c353a79f5cba74a0499aa68565c8 (diff)
set type of GroupUpdate
Diffstat (limited to 'Jellyfin.Server/Filters')
-rw-r--r--Jellyfin.Server/Filters/WebsocketModelFilter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Filters/WebsocketModelFilter.cs b/Jellyfin.Server/Filters/WebsocketModelFilter.cs
index 81dfdfba7..248802857 100644
--- a/Jellyfin.Server/Filters/WebsocketModelFilter.cs
+++ b/Jellyfin.Server/Filters/WebsocketModelFilter.cs
@@ -24,7 +24,7 @@ namespace Jellyfin.Server.Filters
context.SchemaGenerator.GenerateSchema(typeof(SendCommand), context.SchemaRepository);
context.SchemaGenerator.GenerateSchema(typeof(GeneralCommandType), context.SchemaRepository);
- context.SchemaGenerator.GenerateSchema(typeof(GroupUpdate<>), context.SchemaRepository);
+ context.SchemaGenerator.GenerateSchema(typeof(GroupUpdate<object>), context.SchemaRepository);
}
}
}