mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 12:33:00 +02:00
EpisodesWithFiles now returns the full series object, instead of just the SeriesTitle (So we don't need to add junk to the Episode class)
This commit is contained in:
@@ -53,15 +53,12 @@ namespace NzbDrone.Core.Repository
|
||||
}
|
||||
}
|
||||
|
||||
[Ignore]
|
||||
[ResultColumn]
|
||||
public Series Series { get; set; }
|
||||
|
||||
[ResultColumn]
|
||||
public EpisodeFile EpisodeFile { get; set; }
|
||||
|
||||
[ResultColumn]
|
||||
public string SeriesTitle { get; set; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
string seriesTitle = Series == null ? "[NULL]" : Series.Title;
|
||||
|
Reference in New Issue
Block a user