소스 검색

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)