1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Allow Hardcoded subs to be downloaded still.

This commit is contained in:
Leonardo Galli
2017-04-10 11:17:31 +02:00
parent b4bb8875d3
commit 7066b078ab
5 changed files with 45 additions and 2 deletions
@@ -9,6 +9,7 @@ namespace NzbDrone.Api.Config
public int Retention { get; set; }
public int RssSyncInterval { get; set; }
public int AvailabilityDelay { get; set; }
public bool AllowHardcodedSubs { get; set; }
}
public static class IndexerConfigResourceMapper
@@ -21,6 +22,7 @@ namespace NzbDrone.Api.Config
Retention = model.Retention,
RssSyncInterval = model.RssSyncInterval,
AvailabilityDelay = model.AvailabilityDelay,
AllowHardcodedSubs = model.AllowHardcodedSubs,
};
}
}