Skip to content

Commit

Permalink
Fix class name
Browse files Browse the repository at this point in the history
  • Loading branch information
crobibero committed Aug 6, 2024
1 parent 3873c7f commit a495326
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions MediaBrowser.Providers/Lyric/LyricScheduledTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace MediaBrowser.Providers.Lyric;
/// <summary>
/// Task to download lyrics.
/// </summary>
public class LyricDownloadTask : IScheduledTask
public class LyricScheduledTask : IScheduledTask
{
private const int QueryPageLimit = 100;

Expand All @@ -31,20 +31,20 @@ public class LyricDownloadTask : IScheduledTask

private readonly ILibraryManager _libraryManager;
private readonly ILyricManager _lyricManager;
private readonly ILogger<LyricDownloadTask> _logger;
private readonly ILogger<LyricScheduledTask> _logger;
private readonly ILocalizationManager _localizationManager;

/// <summary>
/// Initializes a new instance of the <see cref="LyricDownloadTask"/> class.
/// Initializes a new instance of the <see cref="LyricScheduledTask"/> class.
/// </summary>
/// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
/// <param name="lyricManager">Instance of the <see cref="ILyricManager"/> interface.</param>
/// <param name="logger">Instance of the <see cref="ILogger{DownloaderScheduledTask}"/> interface.</param>
/// <param name="localizationManager">Instance of the <see cref="ILocalizationManager"/> interface.</param>
public LyricDownloadTask(
public LyricScheduledTask(
ILibraryManager libraryManager,
ILyricManager lyricManager,
ILogger<LyricDownloadTask> logger,
ILogger<LyricScheduledTask> logger,
ILocalizationManager localizationManager)
{
_libraryManager = libraryManager;
Expand Down

0 comments on commit a495326

Please sign in to comment.