Merge pull request #3254 from crobibero/ilogger

Use typed logger where possible
This commit is contained in:
dkanada 2020-06-13 00:29:43 +09:00 committed by GitHub
commit 403cd3205f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
122 changed files with 170 additions and 160 deletions

View file

@ -45,7 +45,7 @@ namespace Emby.Server.Implementations.HttpServer.Security
public User Authenticate(HttpRequest request, IAuthenticationAttributes authAttributes)
{
var req = new WebSocketSharpRequest(request, null, request.Path, _logger);
var req = new WebSocketSharpRequest(request, null, request.Path);
var user = ValidateUser(req, authAttributes);
return user;
}