aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs
diff options
context:
space:
mode:
authorScottIsAFool <scottisafool@live.co.uk>2013-09-08 08:41:50 +0100
committerScottIsAFool <scottisafool@live.co.uk>2013-09-08 08:41:50 +0100
commit802ec3153da5c3c9c7c66b852beafbe8092c29e7 (patch)
tree5f740eb48928526fd5fb84354164803cae81f857 /MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs
parentaff1f7604a4e52b54051b482ee22a5afe35ad636 (diff)
parent364d19a273b2decd4d30271e4e02770269f427a5 (diff)
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs')
-rw-r--r--MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs b/MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs
index 227bd954a..8c9815134 100644
--- a/MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs
+++ b/MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs
@@ -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);
}
}
}