1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-05 13:21:25 -05:00

Fix Nullref on Collection delete

This commit is contained in:
Qstick
2022-07-12 19:20:46 -05:00
committed by GitHub
parent ced6586860
commit d5c524719b

View File

@@ -167,7 +167,7 @@ namespace Radarr.Api.V3.Collections
[NonAction]
public void Handle(CollectionDeletedEvent message)
{
BroadcastResourceChange(ModelAction.Deleted, MapToResource(message.Collection));
BroadcastResourceChange(ModelAction.Deleted, message.Collection.Id);
}
}
}