adjust static stream buffer size

This commit is contained in:
Luke Pulverenti 2013-09-07 11:59:00 -04:00
parent 730c62818e
commit f5ffd6ff0f

View file

@ -66,7 +66,7 @@ namespace MediaBrowser.Api.Playback
{
using (var remoteStream = await _msg.Content.ReadAsStreamAsync().ConfigureAwait(false))
{
await remoteStream.CopyToAsync(responseStream, 8192000).ConfigureAwait(false);
await remoteStream.CopyToAsync(responseStream, 819200).ConfigureAwait(false);
}
}
}