mirror of
https://github.com/Radarr/Radarr
synced 2025-12-13 03:43:54 +01:00
Fixed: Collections not deleted on Movie Delete
This commit is contained in:
parent
cc306fcd36
commit
c5fb5200de
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ public void HandleAsync(MoviesDeletedEvent message)
|
|||
|
||||
var collection = FindByTmdbId(collectionTmdbId);
|
||||
|
||||
_repo.Delete(collectionTmdbId);
|
||||
_repo.Delete(collection.Id);
|
||||
|
||||
_eventAggregator.PublishEvent(new CollectionDeletedEvent(collection));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue