mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-03 05:35:29 +00:00
Remove provider status on provider deletion
This commit is contained in:
parent
911a3d4c1e
commit
f45713bff8
2 changed files with 7 additions and 6 deletions
|
@ -8,6 +8,7 @@ namespace NzbDrone.Core.ThingiProvider.Status
|
|||
where TModel : ProviderStatusBase, new()
|
||||
{
|
||||
TModel FindByProviderId(int providerId);
|
||||
void DeleteByProviderId(int providerId);
|
||||
}
|
||||
|
||||
public class ProviderStatusRepository<TModel> : BasicRepository<TModel>, IProviderStatusRepository<TModel>
|
||||
|
@ -22,5 +23,10 @@ namespace NzbDrone.Core.ThingiProvider.Status
|
|||
{
|
||||
return Query(c => c.ProviderId == providerId).SingleOrDefault();
|
||||
}
|
||||
|
||||
public void DeleteByProviderId(int providerId)
|
||||
{
|
||||
Delete(c => c.ProviderId == providerId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -151,12 +151,7 @@ namespace NzbDrone.Core.ThingiProvider.Status
|
|||
|
||||
public virtual void HandleAsync(ProviderDeletedEvent<TProvider> message)
|
||||
{
|
||||
var providerStatus = _providerStatusRepository.FindByProviderId(message.ProviderId);
|
||||
|
||||
if (providerStatus != null)
|
||||
{
|
||||
_providerStatusRepository.Delete(providerStatus);
|
||||
}
|
||||
_providerStatusRepository.DeleteByProviderId(message.ProviderId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue