瀏覽代碼

Merge pull request #774 from 7illusions/patch-1

PlayTo GetTransportInfo fix
Luke 11 年之前
父節點
當前提交
389d0ec7fd
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      MediaBrowser.Dlna/PlayTo/Device.cs

+ 1 - 1
MediaBrowser.Dlna/PlayTo/Device.cs

@@ -476,7 +476,7 @@ namespace MediaBrowser.Dlna.PlayTo
             if (service == null)
                 return;
 
-            var result = await new SsdpHttpClient(_httpClient, _config).SendCommandAsync(Properties.BaseUrl, service, command.Name, RendererCommands.BuildPost(command, service.ServiceType))
+            var result = await new SsdpHttpClient(_httpClient, _config).SendCommandAsync(Properties.BaseUrl, service, command.Name, AvCommands.BuildPost(command, service.ServiceType))
                 .ConfigureAwait(false);
 
             if (result == null || result.Document == null)