mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
fixed a bunch of things. added basic support for file scanning. logs are now avilable in the UI
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user