aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-14 14:26:51 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-14 14:26:51 -0500
commit0c2eea9c07f4afb4ef1718116cc9dd6d7662b359 (patch)
treeadacef9a1fb8cb351d210d854ce8ca96b5cfe402
parent43c69713835afee3d27ced041e5f96ec36fa0ce3 (diff)
update DirectRecorder
-rw-r--r--Emby.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs b/Emby.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs
index 6bb06843a..6d527c1cf 100644
--- a/Emby.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs
+++ b/Emby.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs
@@ -31,13 +31,12 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
public async Task Record(MediaSourceInfo mediaSource, string targetFile, TimeSpan duration, Action onStarted, CancellationToken cancellationToken)
{
- var httpRequestOptions = new HttpRequestOptions()
+ var httpRequestOptions = new HttpRequestOptions
{
- Url = mediaSource.Path
+ Url = mediaSource.Path,
+ BufferContent = false
};
- httpRequestOptions.BufferContent = false;
-
using (var response = await _httpClient.SendAsync(httpRequestOptions, "GET").ConfigureAwait(false))
{
_logger.Info("Opened recording stream from tuner provider");