Merge pull request #2133 from Bond-009/loggerfix

Fix typo
This commit is contained in:
dkanada 2019-12-11 01:13:09 +09:00 committed by GitHub
commit 2a7210ca28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -239,7 +239,7 @@ namespace MediaBrowser.Api.Images
/// Initializes a new instance of the <see cref="ImageService" /> class.
/// </summary>
public ImageService(
Logger<ImageService> logger,
ILogger<ImageService> logger,
IServerConfigurationManager serverConfigurationManager,
IHttpResultFactory httpResultFactory,
IUserManager userManager,

View file

@ -44,7 +44,7 @@ namespace MediaBrowser.Api.Music
private readonly IAuthorizationContext _authContext;
public AlbumsService(
Logger<AlbumsService> logger,
ILogger<AlbumsService> logger,
IServerConfigurationManager serverConfigurationManager,
IHttpResultFactory httpResultFactory,
IUserManager userManager,

View file

@ -70,7 +70,7 @@ namespace MediaBrowser.Api.Playback.Progressive
public class VideoService : BaseProgressiveStreamingService
{
public VideoService(
Logger<VideoService> logger,
ILogger<VideoService> logger,
IServerConfigurationManager serverConfigurationManager,
IHttpResultFactory httpResultFactory,
IHttpClient httpClient,