mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
fixed a bunch of things. added basic support for file scanning. logs are now avilable in the UI
This commit is contained in:
parent
c8a8fb4d62
commit
fa0af257ff
48 changed files with 914 additions and 208 deletions
|
@ -30,7 +30,12 @@ namespace NzbDrone.Core.Providers
|
|||
|
||||
public Episode GetEpisode(long id)
|
||||
{
|
||||
return _sonicRepo.Single<Episode>(e => e.EpisodeId == id);
|
||||
return _sonicRepo.Single<Episode>(id);
|
||||
}
|
||||
|
||||
public Episode GetEpisode(int seriesId, int seasonNumber, int episodeNumber)
|
||||
{
|
||||
return _sonicRepo.Single<Episode>(c => c.SeriesId == seriesId && c.SeasonNumber == seasonNumber && c.EpisodeNumber == episodeNumber);
|
||||
}
|
||||
|
||||
public IList<Episode> GetEpisodeBySeries(long seriesId)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue