Rename ISearchForNzb to IReleaseSearchService

This commit is contained in:
Bogdan
2023-09-10 11:15:46 +03:00
parent bd75621437
commit 0463e66881
4 changed files with 16 additions and 16 deletions

View File

@@ -169,7 +169,7 @@ namespace Prowlarr.Http.Extensions
}
// Front-End-Https: Non-standard header field used by Microsoft applications and load-balancers
else if (request.Headers.Where(x => x.Key == "Front-End-Https" && x.Value.FirstOrDefault() == "on").Any())
else if (request.Headers.Any(x => x.Key == "Front-End-Https" && x.Value.FirstOrDefault() == "on"))
{
scheme = "https";
}