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

New: Don't forcibly retest indexers/download clients/connections on save if previously enabled

Fixes 

(cherry picked from commit b2b1600ebe7f022a3248ea12b69553e2d51a3a7c)
pull/1103/head
Mark McDowall 5 years ago committed by Qstick
parent ca00b8a3c7
commit e6250bfe0f

@ -76,8 +76,10 @@ namespace Readarr.Api.V1
public ActionResult<TProviderResource> UpdateProvider(TProviderResource providerResource)
{
var providerDefinition = GetDefinition(providerResource, false);
var existingDefinition = _providerFactory.Get(providerDefinition.Id);
if (providerDefinition.Enable)
// Only test existing definitions if it was previously disabled
if (providerDefinition.Enable && !existingDefinition.Enable)
{
Test(providerDefinition, false);
}

Loading…
Cancel
Save