aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/Progressive/ProgressiveStreamWriter.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-14 01:27:10 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-14 01:27:10 -0500
commit1b06e05cf69815e523faaf9e237461fe0541c7ce (patch)
tree359fe31cb03d01cb51a65f6ebd871a6da58ad988 /MediaBrowser.Api/Playback/Progressive/ProgressiveStreamWriter.cs
parent4f5c7687042148507d5cedfcec81ab355f478f19 (diff)
update translations
Diffstat (limited to 'MediaBrowser.Api/Playback/Progressive/ProgressiveStreamWriter.cs')
-rw-r--r--MediaBrowser.Api/Playback/Progressive/ProgressiveStreamWriter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/Progressive/ProgressiveStreamWriter.cs b/MediaBrowser.Api/Playback/Progressive/ProgressiveStreamWriter.cs
index 35f714cb1..4a51f8644 100644
--- a/MediaBrowser.Api/Playback/Progressive/ProgressiveStreamWriter.cs
+++ b/MediaBrowser.Api/Playback/Progressive/ProgressiveStreamWriter.cs
@@ -130,7 +130,7 @@ namespace MediaBrowser.Api.Playback.Progressive
private void CopyToInternal(Stream source, Stream destination, int bufferSize)
{
- byte[] array = new byte[bufferSize];
+ var array = new byte[bufferSize];
int count;
while ((count = source.Read(array, 0, array.Length)) != 0)
{