mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
New: Custom Filtering for UI (#234)
This commit is contained in:
@@ -27,7 +27,7 @@ namespace NzbDrone.Core.Extras.Files
|
||||
|
||||
public abstract class ExtraFileService<TExtraFile> : IExtraFileService<TExtraFile>,
|
||||
IHandleAsync<ArtistDeletedEvent>,
|
||||
IHandleAsync<TrackFileDeletedEvent>
|
||||
IHandle<TrackFileDeletedEvent>
|
||||
where TExtraFile : ExtraFile, new()
|
||||
{
|
||||
private readonly IExtraFileRepository<TExtraFile> _repository;
|
||||
@@ -103,7 +103,7 @@ namespace NzbDrone.Core.Extras.Files
|
||||
_repository.DeleteForArtist(message.Artist.Id);
|
||||
}
|
||||
|
||||
public void HandleAsync(TrackFileDeletedEvent message)
|
||||
public void Handle(TrackFileDeletedEvent message)
|
||||
{
|
||||
var trackFile = message.TrackFile;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user