Fix parsing of entered time for seed time

This commit is contained in:
Kevin Richter 2018-05-04 18:51:40 +02:00 committed by Taloth Saldono
parent 1a6a3038d6
commit 002ed9e4c7
1 changed files with 1 additions and 1 deletions

View File

@ -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;