aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2021-09-10 10:03:42 +0200
committercvium <clausvium@gmail.com>2021-09-10 10:03:42 +0200
commit1a5a74d2a95506249cf071c659e3c6cf01f28f78 (patch)
tree42449f2310821dc6287a8ca5747e190b90a85da6 /Emby.Server.Implementations
parentf3573b061c4d9eb869316ce3de320fd8803aeef8 (diff)
Remove more unused args
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs b/Emby.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs
index fdefa2679a..f6e0111b6d 100644
--- a/Emby.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs
+++ b/Emby.Server.Implementations/LiveTv/EmbyTV/DirectRecorder.cs
@@ -58,7 +58,7 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
using var cancellationTokenSource = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, durationToken.Token);
var linkedCancellationToken = cancellationTokenSource.Token;
- await using var fileStream = new ProgressiveFileStream(directStreamProvider.GetStream(), null, null);
+ await using var fileStream = new ProgressiveFileStream(directStreamProvider.GetStream());
await _streamHelper.CopyToAsync(
fileStream,
output,