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

Flood: explicitly cast DateFinished long? to long

pull/1392/head
Jesse Chan 4 years ago committed by ta264
parent 05a8a3d764
commit e2c1d76516

@ -156,7 +156,7 @@ namespace NzbDrone.Core.Download.Clients.Flood
else if (properties.DateFinished != null && properties.DateFinished > 0)
{
// Check if seed time reached
if ((DateTimeOffset.Now - DateTimeOffset.FromUnixTimeSeconds(properties.DateFinished)) >= seedConfig.SeedTime)
if ((DateTimeOffset.Now - DateTimeOffset.FromUnixTimeSeconds((long)properties.DateFinished)) >= seedConfig.SeedTime)
{
item.CanMoveFiles = item.CanBeRemoved = true;
}

Loading…
Cancel
Save