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

Check if release still exists in cache when grabbing release

pull/1724/head
Bogdan 2 years ago
parent f7d7cca982
commit f5b57db753

@ -57,6 +57,13 @@ namespace Prowlarr.Api.V1.Search
var releaseInfo = _remoteReleaseCache.Find(GetCacheKey(release));
if (releaseInfo == null)
{
_logger.Debug("Couldn't find requested release in cache, cache timeout probably expired.");
throw new NzbDroneClientException(HttpStatusCode.NotFound, "Couldn't find requested release in cache, try searching again");
}
var indexerDef = _indexerFactory.Get(release.IndexerId);
var source = Request.GetSource();
var host = Request.GetHostName();

Loading…
Cancel
Save