Browse Source

Move the check further down

Claus Vium 6 years ago
parent
commit
547d0ecf58
1 changed files with 7 additions and 2 deletions
  1. 7 2
      MediaBrowser.Controller/MediaEncoding/JobLogger.cs

+ 7 - 2
MediaBrowser.Controller/MediaEncoding/JobLogger.cs

@@ -24,8 +24,7 @@ namespace MediaBrowser.Controller.MediaEncoding
             {
                 using (var reader = new StreamReader(source))
                 {
-                    // If ffmpeg process is closed, the state is disposed, so don't write to target in that case
-                    while (!reader.EndOfStream && target.CanWrite)
+                    while (!reader.EndOfStream)
                     {
                         var line = await reader.ReadLineAsync().ConfigureAwait(false);
 
@@ -33,6 +32,12 @@ namespace MediaBrowser.Controller.MediaEncoding
 
                         var bytes = Encoding.UTF8.GetBytes(Environment.NewLine + line);
 
+                        // If ffmpeg process is closed, the state is disposed, so don't write to target in that case
+                        if (!target.CanWrite)
+                        {
+                            break;
+                        }
+
                         await target.WriteAsync(bytes, 0, bytes.Length).ConfigureAwait(false);
                         await target.FlushAsync().ConfigureAwait(false);
                     }