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

New: Removal of indexers on application sync that are no longer defined within Prowlarr

pull/62/head
Robin Dadswell 4 years ago committed by Qstick
parent 5cb13e69d7
commit 2451a9a9ee

@ -147,6 +147,15 @@ namespace NzbDrone.Core.Applications
}
}
}
foreach (var mapping in indexerMappings)
{
if (!indexers.Any(x => x.Id == mapping.IndexerId))
{
_logger.Info("Indexer with the ID {0} was found within {1} but is no longer defined within Prowlarr, this is being removed.", mapping.IndexerId, app.Name);
ExecuteAction(a => a.RemoveIndexer(mapping.IndexerId), app);
}
}
}
}

Loading…
Cancel
Save