Fix parsing of entered time for seed time

Kevin Richter 6 years ago committed by Taloth Saldono
parent 1a6a3038d6
commit 002ed9e4c7

@ -36,7 +36,7 @@ namespace NzbDrone.Core.Configuration
var seedTime = remoteEpisode.ParsedEpisodeInfo.FullSeason ? torrentIndexerSettings.SeedCriteria.SeasonPackSeedTime : torrentIndexerSettings.SeedCriteria.SeedTime;
if (seedTime.HasValue)
{
seedConfig.SeedTime = TimeSpan.FromSeconds(seedTime.Value);
seedConfig.SeedTime = TimeSpan.FromMinutes(seedTime.Value);
}
return seedConfig;

Loading…
Cancel
Save