aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/SocketSharp/RequestMono.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-02-13 16:52:53 +0100
committerBond-009 <bond.009@outlook.com>2019-02-16 00:43:56 +0100
commitebae7229c1dba82ec60555d951cefa90ff2df655 (patch)
tree506b5fb2859b829e4a408375fe9b513ca2629138 /Jellyfin.Server/SocketSharp/RequestMono.cs
parent3df8cda110a952ca529740f2b985c624c036a5f0 (diff)
Single line comments should start with a space
Diffstat (limited to 'Jellyfin.Server/SocketSharp/RequestMono.cs')
-rw-r--r--Jellyfin.Server/SocketSharp/RequestMono.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Jellyfin.Server/SocketSharp/RequestMono.cs b/Jellyfin.Server/SocketSharp/RequestMono.cs
index a8ba4cdb5..af8fe9616 100644
--- a/Jellyfin.Server/SocketSharp/RequestMono.cs
+++ b/Jellyfin.Server/SocketSharp/RequestMono.cs
@@ -570,10 +570,10 @@ namespace Jellyfin.Server.SocketSharp
public HttpMultipart(Stream data, string b, Encoding encoding)
{
this.data = data;
- //DB: 30/01/11: cannot set or read the Position in HttpListener in Win.NET
- //var ms = new MemoryStream(32 * 1024);
- //data.CopyTo(ms);
- //this.data = ms;
+ // DB: 30/01/11: cannot set or read the Position in HttpListener in Win.NET
+ // var ms = new MemoryStream(32 * 1024);
+ // data.CopyTo(ms);
+ // this.data = ms;
boundary = b;
boundary_bytes = encoding.GetBytes(b);