aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener.Portable
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-03-20 13:57:04 -0400
committerGitHub <noreply@github.com>2017-03-20 13:57:04 -0400
commit9148b6d27d85b3fb2b1c1b736668db2fc1ee6131 (patch)
treedd689fd9b7e37231e84f34ed764bf2dcc94b9c02 /SocketHttpListener.Portable
parent22f8b2122d93c158b11fa56dce35e7c584d36789 (diff)
parentf1b1458ee8b94a5c75ed009581f5e9cb22ba70b7 (diff)
Merge pull request #2535 from MediaBrowser/dev
3.2.8.6
Diffstat (limited to 'SocketHttpListener.Portable')
-rw-r--r--SocketHttpListener.Portable/Net/ResponseStream.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/SocketHttpListener.Portable/Net/ResponseStream.cs b/SocketHttpListener.Portable/Net/ResponseStream.cs
index 19821f954..3c79f47c2 100644
--- a/SocketHttpListener.Portable/Net/ResponseStream.cs
+++ b/SocketHttpListener.Portable/Net/ResponseStream.cs
@@ -363,7 +363,7 @@ namespace SocketHttpListener.Net
}
}
- private async Task CopyToInternalAsync(Stream source, Stream destination, long copyLength, CancellationToken cancellationToken)
+ private static async Task CopyToInternalAsync(Stream source, Stream destination, long copyLength, CancellationToken cancellationToken)
{
var array = new byte[81920];
int count;