diff options
| author | Richard Torhan <richard.torhan@windowslive.com> | 2025-11-27 18:03:10 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2026-01-14 18:55:47 +0100 |
| commit | e70355fbe1039290bd03265c319e3ba1c75e8402 (patch) | |
| tree | 2224cab4b8841ebbea09af8253c7ab8561d8d3d6 /MediaBrowser.Controller/MediaEncoding | |
| parent | 140c459ac3f352fd53a3cbd81410aedb0d9fe854 (diff) | |
Fix nullable annotation
Diffstat (limited to 'MediaBrowser.Controller/MediaEncoding')
| -rw-r--r-- | MediaBrowser.Controller/MediaEncoding/JobLogger.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/MediaEncoding/JobLogger.cs b/MediaBrowser.Controller/MediaEncoding/JobLogger.cs index c438dbf0f..2702e3bc0 100644 --- a/MediaBrowser.Controller/MediaEncoding/JobLogger.cs +++ b/MediaBrowser.Controller/MediaEncoding/JobLogger.cs @@ -27,7 +27,7 @@ namespace MediaBrowser.Controller.MediaEncoding using (target) using (reader) { - string? line = await reader.ReadLineAsync().ConfigureAwait(false); + string line = await reader.ReadLineAsync().ConfigureAwait(false); while (line is not null && reader.BaseStream.CanRead) { ParseLogLine(line, state); |
