mirror of
https://github.com/Radarr/Radarr
synced 2026-03-05 20:12:59 +01:00
Fix parsing of entered time for seed time
This commit is contained in:
parent
1a6a3038d6
commit
002ed9e4c7
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ public TorrentSeedConfiguration GetSeedConfiguration(RemoteEpisode remoteEpisode
|
|||
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 a new issue