aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/SessionController.cs
diff options
context:
space:
mode:
authorgithub@esslinger.dev <simon@esslinger.dev>2020-10-02 18:26:48 +0200
committergithub@esslinger.dev <simon@esslinger.dev>2020-10-02 18:26:48 +0200
commit9aad772288145645d51f93b26a2493782f55f2d3 (patch)
treefe012d2146396271a5af88217b5c96db2a63c27b /Jellyfin.Api/Controllers/SessionController.cs
parent4b4c74bdcd2ffd119f930226179360907c15fd74 (diff)
feat: implement CommaDelimitedArrayModelBinderProvider
Diffstat (limited to 'Jellyfin.Api/Controllers/SessionController.cs')
-rw-r--r--Jellyfin.Api/Controllers/SessionController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/SessionController.cs b/Jellyfin.Api/Controllers/SessionController.cs
index 68cec1415..3dbf7ba0b 100644
--- a/Jellyfin.Api/Controllers/SessionController.cs
+++ b/Jellyfin.Api/Controllers/SessionController.cs
@@ -379,7 +379,7 @@ namespace Jellyfin.Api.Controllers
public ActionResult PostCapabilities(
[FromQuery] string? id,
[FromQuery] string? playableMediaTypes,
- [FromQuery][ModelBinder(typeof(CommaDelimitedArrayModelBinder))] GeneralCommandType[] supportedCommands,
+ [FromQuery] GeneralCommandType[] supportedCommands,
[FromQuery] bool supportsMediaControl = false,
[FromQuery] bool supportsSync = false,
[FromQuery] bool supportsPersistentIdentifier = true)