mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Minor CSS update
This commit is contained in:
parent
dc4e45f72d
commit
6d7e886e8c
8 changed files with 27 additions and 37 deletions
|
@ -103,7 +103,7 @@ namespace NzbDrone.Core.Providers
|
|||
return series;
|
||||
}
|
||||
|
||||
public virtual void AddSeries(string path, int tvDbSeriesId, int qualityProfileId)
|
||||
public virtual void AddSeries(string title, string path, int tvDbSeriesId, int qualityProfileId)
|
||||
{
|
||||
Logger.Info("Adding Series [{0}] Path: [{1}]", tvDbSeriesId, path);
|
||||
|
||||
|
@ -117,6 +117,7 @@ namespace NzbDrone.Core.Providers
|
|||
repoSeries.Path = path;
|
||||
repoSeries.Monitored = true; //New shows should be monitored
|
||||
repoSeries.QualityProfileId = qualityProfileId;
|
||||
repoSeries.Title = title;
|
||||
if (qualityProfileId == 0)
|
||||
repoSeries.QualityProfileId = _configProvider.DefaultQualityProfile;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue