diff --git a/src/NzbDrone.Core/Download/TrackedDownloads/TrackedDownloadService.cs b/src/NzbDrone.Core/Download/TrackedDownloads/TrackedDownloadService.cs index 1dd989d0b..5a8a7be65 100644 --- a/src/NzbDrone.Core/Download/TrackedDownloads/TrackedDownloadService.cs +++ b/src/NzbDrone.Core/Download/TrackedDownloads/TrackedDownloadService.cs @@ -299,22 +299,6 @@ public void Handle(AlbumInfoRefreshedEvent message) } } - public void Handle(AlbumAddedEvent message) - { - var cachedItems = _cache.Values - .Where(t => - t.RemoteAlbum?.Albums == null || - t.RemoteAlbum.Albums.Any(a => a.ForeignAlbumId == message.Album.ForeignAlbumId)) - .ToList(); - - if (cachedItems.Any()) - { - cachedItems.ForEach(UpdateCachedItem); - - _eventAggregator.PublishEvent(new TrackedDownloadRefreshedEvent(GetTrackedDownloads())); - } - } - public void Handle(AlbumDeletedEvent message) { var cachedItems = _cache.Values