aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/TV/Episode.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-12 00:49:19 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-12 00:49:19 -0500
commit1aff48b93b72fe7d418b4798f504bd0d145f44e8 (patch)
tree5557717b3ecbf79d7fbb6f531102f5bceafd4fa5 /MediaBrowser.Controller/Entities/TV/Episode.cs
parenta8d9a3440d0143aa7cf564f21aff2eadc4b88e6a (diff)
move book support into the core
Diffstat (limited to 'MediaBrowser.Controller/Entities/TV/Episode.cs')
-rw-r--r--MediaBrowser.Controller/Entities/TV/Episode.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/TV/Episode.cs b/MediaBrowser.Controller/Entities/TV/Episode.cs
index 737257898..e6ebcb7fd 100644
--- a/MediaBrowser.Controller/Entities/TV/Episode.cs
+++ b/MediaBrowser.Controller/Entities/TV/Episode.cs
@@ -193,9 +193,10 @@ namespace MediaBrowser.Controller.Entities.TV
{
return "Season " + ParentIndexNumber.Value.ToString(CultureInfo.InvariantCulture);
}
+ return "Season Unknown";
}
- return season == null ? SeasonName : season.Name;
+ return season.Name;
}
public string FindSeriesName()