add more device options

This commit is contained in:
Luke Pulverenti
2014-10-11 21:46:02 -04:00
parent f3539686bd
commit 314a51dff3
28 changed files with 162 additions and 82 deletions

View File

@@ -53,9 +53,9 @@ namespace MediaBrowser.Api.Playback
/// <returns>Task.</returns>
public async Task WriteToAsync(Stream responseStream)
{
using (var remoteStream = _response.Content)
using (_response)
{
await remoteStream.CopyToAsync(responseStream, 819200).ConfigureAwait(false);
await _response.Content.CopyToAsync(responseStream, 819200).ConfigureAwait(false);
}
}
}