diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-04 15:49:36 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-04 15:49:36 -0500 |
| commit | 403534f80ecb13dfffbcbd34bee19bfd1aa885f7 (patch) | |
| tree | 6d9e46ddb7ee836e88aba1d04d99d4dd439f6ce4 /MediaBrowser.Api/RemoteImageService.cs | |
| parent | 14dbfc096233cbb221de47e8ee07130caea177bb (diff) | |
fixes #605 - Add manual image selection for Series
Diffstat (limited to 'MediaBrowser.Api/RemoteImageService.cs')
| -rw-r--r-- | MediaBrowser.Api/RemoteImageService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/RemoteImageService.cs b/MediaBrowser.Api/RemoteImageService.cs index c5f1005c7..e64badd05 100644 --- a/MediaBrowser.Api/RemoteImageService.cs +++ b/MediaBrowser.Api/RemoteImageService.cs @@ -20,7 +20,7 @@ namespace MediaBrowser.Api [ApiMember(Name = "Id", Description = "Item Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")] public string Id { get; set; } - [ApiMember(Name = "Type", Description = "The image type", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "GET")] + [ApiMember(Name = "Type", Description = "The image type", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")] public ImageType? Type { get; set; } /// <summary> |
