mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Add Existing Series works, UI shows TVDB Name and Path so you can check before adding to DB.
This commit is contained in:
parent
64a1b2d28d
commit
48b89abfeb
14 changed files with 216 additions and 50 deletions
|
@ -76,6 +76,11 @@ namespace NzbDrone.Core.Providers
|
|||
return _tvDb.GetSeries(searchResults.Id, false);
|
||||
}
|
||||
|
||||
public TvdbSeries MapPathToSeries(int tvDbId)
|
||||
{
|
||||
return _tvDb.GetSeries(tvDbId, false);
|
||||
}
|
||||
|
||||
public void AddSeries(string path, TvdbSeries series)
|
||||
{
|
||||
Logger.Info("Adding Series [{0}]:{1} Path: {2}", series.Id, series.SeriesName, path);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue