diff options
| author | Bond-009 <bond.009@outlook.com> | 2023-01-03 12:01:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-03 12:01:32 +0100 |
| commit | 43c3a465e6a24d4d5c9602fb478da41ec09009ae (patch) | |
| tree | 41fecb22e32a3e4eae9c27b57157671e0ba2e34c /MediaBrowser.Controller/Entities | |
| parent | 223aaec93fd193284fce6e25bf49e596bce8db4d (diff) | |
| parent | 8f4ac1cb811ac4d62512149a5feb01703004b058 (diff) | |
Merge pull request #8775 from SenorSmartyPants/DVRMetadata
Fixes https://github.com/jellyfin/jellyfin/issues/5178
Diffstat (limited to 'MediaBrowser.Controller/Entities')
| -rw-r--r-- | MediaBrowser.Controller/Entities/TV/Episode.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/TV/Episode.cs b/MediaBrowser.Controller/Entities/TV/Episode.cs index 3f30ac565..c83149a6d 100644 --- a/MediaBrowser.Controller/Entities/TV/Episode.cs +++ b/MediaBrowser.Controller/Entities/TV/Episode.cs @@ -320,7 +320,7 @@ namespace MediaBrowser.Controller.Entities.TV if (!IsLocked) { - if (SourceType == SourceType.Library) + if (SourceType == SourceType.Library || SourceType == SourceType.LiveTV) { try { |
