浏览代码

fix dlna update profile

YounJae Rho 9 年之前
父节点
当前提交
1bc0c1481e
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      MediaBrowser.Api/Dlna/DlnaService.cs

+ 3 - 3
MediaBrowser.Api/Dlna/DlnaService.cs

@@ -31,11 +31,11 @@ namespace MediaBrowser.Api.Dlna
         public string Id { get; set; }
     }
 
-    [Route("/Dlna/Profiles/{ProfileId}", "POST", Summary = "Updates a profile")]
+    [Route("/Dlna/Profiles/{Id}", "POST", Summary = "Updates a profile")]
     public class UpdateProfile : DeviceProfile, IReturnVoid
     {
-        [ApiMember(Name = "ProfileId", Description = "Profile Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
-        public string ProfileId { get; set; }
+        [ApiMember(Name = "Id", Description = "Profile Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
+        public string Id { get; set; }
     }
 
     [Route("/Dlna/Profiles", "POST", Summary = "Creates a profile")]