mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
ren param for consistency
This commit is contained in:
parent
0bf807f01e
commit
ac05b0c22a
3 changed files with 6 additions and 6 deletions
|
|
@ -28,9 +28,9 @@ public class Handler : AsyncRequestHandler<Command>
|
|||
private readonly string[] _extensionsToRewrite = { "", ".aspx", ".p2p", ".php" };
|
||||
private readonly HttpClient _httpClient;
|
||||
|
||||
public Handler(AgentHttpClient httpClient)
|
||||
public Handler(AgentHttpClient agentHttpClient)
|
||||
{
|
||||
_httpClient = httpClient.Client;
|
||||
_httpClient = agentHttpClient.Client;
|
||||
}
|
||||
|
||||
protected override async Task Handle(Command request, CancellationToken cancellationToken)
|
||||
|
|
|
|||
|
|
@ -28,9 +28,9 @@ public class Handler : AsyncRequestHandler<Command>
|
|||
private const string RepoDirectory = "archives";
|
||||
private readonly HttpClient _httpClient;
|
||||
|
||||
public Handler(AgentHttpClient httpClient)
|
||||
public Handler(AgentHttpClient agentHttpClient)
|
||||
{
|
||||
_httpClient = httpClient.Client;
|
||||
_httpClient = agentHttpClient.Client;
|
||||
}
|
||||
|
||||
protected override async Task Handle(Command request, CancellationToken cancellationToken)
|
||||
|
|
|
|||
|
|
@ -27,9 +27,9 @@ public class Handler : AsyncRequestHandler<Command>
|
|||
private const string RepoDirectory = "archives";
|
||||
private readonly HttpClient _httpClient;
|
||||
|
||||
public Handler(AgentHttpClient httpClient)
|
||||
public Handler(AgentHttpClient agentHttpClient)
|
||||
{
|
||||
_httpClient = httpClient.Client;
|
||||
_httpClient = agentHttpClient.Client;
|
||||
}
|
||||
|
||||
protected override async Task Handle(Command request, CancellationToken cancellationToken)
|
||||
|
|
|
|||
Loading…
Reference in a new issue