mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Fixes for Episode to EpisodeFile mapping.
Series details sorts with newest season and newest episode on top my default.
This commit is contained in:
parent
ce6bcbfec1
commit
9d24ccd97a
6 changed files with 30 additions and 8 deletions
|
@ -263,6 +263,11 @@ namespace NzbDrone.Core.Providers
|
|||
_sonicRepo.Delete<Episode>(episodeId);
|
||||
}
|
||||
|
||||
public void UpdateEpisode(Episode episode)
|
||||
{
|
||||
_sonicRepo.Update(episode);
|
||||
}
|
||||
|
||||
private bool IsSeasonIgnored(EpisodeModel episode)
|
||||
{
|
||||
//Check if this Season is ignored
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue