Browse Source

set type of GroupUpdate

crobibero 4 years ago
parent
commit
2b75af9873
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Jellyfin.Server/Filters/WebsocketModelFilter.cs

+ 1 - 1
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);
         }
     }
 }