mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: Removing invalid statuses on provider deletion
This commit is contained in:
@@ -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(x => x.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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user