aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/EmbyTV
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2023-12-05 11:59:51 -0500
committerPatrick Barron <barronpm@gmail.com>2023-12-05 13:35:14 -0500
commit67b4cef77a4b391d5dcf0769d0c70762128ddfd1 (patch)
tree40957a08c9e222f4e39103795baeb9473158fb9e /Emby.Server.Implementations/LiveTv/EmbyTV
parent000ccaa6dbf948aa427a8daac7d550dd598b3b5b (diff)
Use implementation types in LiveTv
Diffstat (limited to 'Emby.Server.Implementations/LiveTv/EmbyTV')
-rw-r--r--Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs b/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs
index 5369c9b3d1..b548a92b19 100644
--- a/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs
+++ b/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs
@@ -34,7 +34,7 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
private readonly IServerConfigurationManager _serverConfigurationManager;
private readonly JsonSerializerOptions _jsonOptions = JsonDefaults.Options;
private bool _hasExited;
- private Stream _logFileStream;
+ private FileStream _logFileStream;
private string _targetPath;
private Process _process;
private bool _disposed = false;
@@ -308,7 +308,7 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV
}
}
- private async Task StartStreamingLog(Stream source, Stream target)
+ private async Task StartStreamingLog(Stream source, FileStream target)
{
try
{