Commit ad823a19 authored by justcoding121's avatar justcoding121

#439 hotfix in beta

parent f961c06f
...@@ -28,9 +28,8 @@ namespace Titanium.Web.Proxy.EventArguments ...@@ -28,9 +28,8 @@ namespace Titanium.Web.Proxy.EventArguments
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="SessionEventArgsBase" /> class. /// Initializes a new instance of the <see cref="SessionEventArgsBase" /> class.
/// </summary> /// </summary>
internal SessionEventArgsBase(ProxyServer server, ProxyEndPoint endPoint, private SessionEventArgsBase(ProxyServer server, ProxyEndPoint endPoint,
CancellationTokenSource cancellationTokenSource) CancellationTokenSource cancellationTokenSource)
: this(server, endPoint, cancellationTokenSource, null)
{ {
bufferSize = server.BufferSize; bufferSize = server.BufferSize;
bufferPool = server.BufferPool; bufferPool = server.BufferPool;
...@@ -39,7 +38,7 @@ namespace Titanium.Web.Proxy.EventArguments ...@@ -39,7 +38,7 @@ namespace Titanium.Web.Proxy.EventArguments
protected SessionEventArgsBase(ProxyServer server, ProxyEndPoint endPoint, protected SessionEventArgsBase(ProxyServer server, ProxyEndPoint endPoint,
CancellationTokenSource cancellationTokenSource, CancellationTokenSource cancellationTokenSource,
Request request) Request request) : this(server, endPoint, cancellationTokenSource)
{ {
CancellationTokenSource = cancellationTokenSource; CancellationTokenSource = cancellationTokenSource;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment