aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-02-22 15:58:02 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-02-22 15:58:02 -0500
commit6847cac829b34963467cfed6c9cb39c84d1582fb (patch)
tree614b81c4da25812781e7b67234978375e60b2de1 /Emby.Server.Implementations
parent76b456d5e89415317c0556292057fdb1fe4bae9f (diff)
update recording conversion
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs b/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs
index d5c2ec5d0..7460a9f06 100644
--- a/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs
+++ b/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs
@@ -67,7 +67,11 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
private bool CopySubtitles
{
- get { return string.Equals(OutputFormat, "mkv", StringComparison.OrdinalIgnoreCase); }
+ get
+ {
+ return false;
+ //return string.Equals(OutputFormat, "mkv", StringComparison.OrdinalIgnoreCase);
+ }
}
public string GetOutputPath(MediaSourceInfo mediaSource, string targetFile)