Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/abddce1cfa872f0b3fb4590071037896aee2f7c7 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Provider health checks persist after add until next scheduled check

(cherry picked from commit 202449c40c82c6dfd2d15844c578436bbe3c8872)

Close 
pull/8511/head
Qstick 5 years ago committed by Bogdan
parent 3350071a83
commit abddce1cfa

@ -108,9 +108,10 @@ namespace NzbDrone.Core.ThingiProvider
public virtual TProviderDefinition Create(TProviderDefinition definition)
{
var addedDefinition = _providerRepository.Insert(definition);
_eventAggregator.PublishEvent(new ProviderAddedEvent<TProvider>(definition));
return addedDefinition;
var result = _providerRepository.Insert(definition);
_eventAggregator.PublishEvent(new ProviderAddedEvent<TProvider>(result));
return result;
}
public virtual void Update(TProviderDefinition definition)

Loading…
Cancel
Save