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

Map seed configuration on release only when it's not null

Fixes 
pull/1724/head
Bogdan 2 years ago
parent f5b57db753
commit d05128ca33

@ -62,7 +62,12 @@ namespace NzbDrone.Core.Download
}
// Get the seed configuration for this release.
((TorrentInfo)release).SeedConfiguration = _seedConfigProvider.GetSeedConfiguration(release);
var seedConfiguration = _seedConfigProvider.GetSeedConfiguration(release);
if (seedConfiguration != null)
{
((TorrentInfo)release).SeedConfiguration = _seedConfigProvider.GetSeedConfiguration(release);
}
var indexer = _indexerFactory.GetInstance(_indexerFactory.Get(release.IndexerId));

Loading…
Cancel
Save