mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
Made BaseHandler.ProcessRequest virtual
This commit is contained in:
parent
692d9dc331
commit
6ab63eaf95
@ -59,7 +59,7 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
/// <summary>
|
||||
/// The original HttpListenerContext
|
||||
/// </summary>
|
||||
protected HttpListenerContext HttpListenerContext { get; private set; }
|
||||
protected HttpListenerContext HttpListenerContext { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The original QueryString
|
||||
@ -196,7 +196,7 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
}
|
||||
}
|
||||
|
||||
public void ProcessRequest(HttpListenerContext ctx)
|
||||
public virtual void ProcessRequest(HttpListenerContext ctx)
|
||||
{
|
||||
HttpListenerContext = ctx;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user