aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities
diff options
context:
space:
mode:
authorSenorSmartyPants <senorsmartypants@gmail.com>2022-11-19 14:14:41 -0600
committerSenorSmartyPants <senorsmartypants@gmail.com>2022-11-19 14:14:41 -0600
commit159a244654aa533a149fe00636c9c8e8fa5d2c01 (patch)
tree436f20c09e4d9a63ce81fe013f54d6f7a6f8a461 /MediaBrowser.Controller/Entities
parentb5f9a093ddf2460d42f5910fd741dd2c57a47b61 (diff)
Add Options to disable DVR NFO and image saving
- SaveRecordingNFO and SaveRecordingImages default to true. Maintains current behavior. - Episode.FillMissingEpisodeNumbersFromPath for live tv so external metadata can be pulled when recording starts.
Diffstat (limited to 'MediaBrowser.Controller/Entities')
-rw-r--r--MediaBrowser.Controller/Entities/TV/Episode.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/TV/Episode.cs b/MediaBrowser.Controller/Entities/TV/Episode.cs
index 15b721fe6..285d3ef08 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
{