mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-29 22:06:56 +02:00
Fixed a bug with converting default quality profile from config when adding a new series.
Re-enabled the RssSyncTimer so it will run an RSS Sync when fired.
This commit is contained in:
parent
da79ad147e
commit
735668f7b3
NzbDrone.Core/Providers
NzbDrone.Web/Controllers
@ -104,7 +104,7 @@ namespace NzbDrone.Core.Providers
|
||||
return false;
|
||||
}
|
||||
|
||||
throw new NotImplementedException();
|
||||
return true;
|
||||
}
|
||||
|
||||
public void RefreshEpisodeInfo(int seriesId)
|
||||
|
@ -108,7 +108,7 @@ namespace NzbDrone.Core.Providers
|
||||
repoSeries.Path = path;
|
||||
repoSeries.CleanTitle = Parser.NormalizeTitle(series.SeriesName);
|
||||
repoSeries.Monitored = true; //New shows should be monitored
|
||||
repoSeries.QualityProfile = (QualityProfile) Enum.Parse(typeof (QualityProfile), _config.GetValue("Quality", 1, true));
|
||||
repoSeries.QualityProfile = _quality.Find(Convert.ToInt32(_config.GetValue("Quality", 1, true)));
|
||||
_sonioRepo.Add(repoSeries);
|
||||
}
|
||||
|
||||
|
@ -89,7 +89,7 @@ namespace NzbDrone.Core.Providers
|
||||
private void RunRssSync(object obj, ElapsedEventArgs args)
|
||||
{
|
||||
_rssSyncNextInterval = DateTime.Now.AddMilliseconds(_rssSyncTimer.Interval);
|
||||
//_rssSyncProvider.Begin();
|
||||
_rssSyncProvider.Begin();
|
||||
}
|
||||
|
||||
private void MinuteTimer_Elapsed(object obj, ElapsedEventArgs args)
|
||||
|
@ -167,10 +167,7 @@ namespace NzbDrone.Web.Controllers
|
||||
{
|
||||
//Todo: Only allow indexers to be enabled if user information has been provided
|
||||
foreach (var indexer in data.Indexers)
|
||||
{
|
||||
indexer.ApiUrl = String.Empty; //TODO: Remove this and use a Real API URL
|
||||
_indexerProvider.Update(indexer);
|
||||
}
|
||||
|
||||
_configProvider.SetValue("NzbMatrixUsername", data.NzbMatrixUsername);
|
||||
_configProvider.SetValue("NzbMatrixApiKey", data.NzbMatrixApiKey);
|
||||
|
Loading…
x
Reference in New Issue
Block a user