diff options
| author | Luke <luke.pulverenti@gmail.com> | 2014-04-08 09:57:23 -0400 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2014-04-08 09:57:23 -0400 |
| commit | 389d0ec7fdb05259a2b808b6733a1977f482268c (patch) | |
| tree | 35723bfa96540e0ee3939582fa779d503afb5e02 | |
| parent | b9aa4ac8be483ea0d0da235b6446bef4009de297 (diff) | |
| parent | 5f8ef78d3504b276b21b95e7b4b2fae7247bdaa2 (diff) | |
Merge pull request #774 from 7illusions/patch-1
PlayTo GetTransportInfo fix
| -rw-r--r-- | MediaBrowser.Dlna/PlayTo/Device.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Dlna/PlayTo/Device.cs b/MediaBrowser.Dlna/PlayTo/Device.cs index 08ea4f550..1c243b6d3 100644 --- a/MediaBrowser.Dlna/PlayTo/Device.cs +++ b/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) |
