diff options
| author | derchu <71195282+derchu@users.noreply.github.com> | 2020-09-12 14:46:29 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-12 14:46:29 -0700 |
| commit | b88cfa802f2274b898a3b4e178700ab438c767e0 (patch) | |
| tree | f2cb9f7434f30d47fb3b5e8742fbd3300ab03472 | |
| parent | 6bf0acb854683377bebad3ca27de17706519c420 (diff) | |
Grab content rating from episode info
| -rw-r--r-- | MediaBrowser.Providers/Plugins/TheTvdb/TvdbEpisodeProvider.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MediaBrowser.Providers/Plugins/TheTvdb/TvdbEpisodeProvider.cs b/MediaBrowser.Providers/Plugins/TheTvdb/TvdbEpisodeProvider.cs index c088d8cec..5fa8a3e1c 100644 --- a/MediaBrowser.Providers/Plugins/TheTvdb/TvdbEpisodeProvider.cs +++ b/MediaBrowser.Providers/Plugins/TheTvdb/TvdbEpisodeProvider.cs @@ -141,6 +141,7 @@ namespace MediaBrowser.Providers.Plugins.TheTvdb Name = episode.EpisodeName, Overview = episode.Overview, CommunityRating = (float?)episode.SiteRating, + OfficialRating = episode.ContentRating, } }; result.ResetPeople(); |
