Fix parsing of entered time for seed time
This commit is contained in:
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…
Reference in New Issue