mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-12 13:22:17 +01:00
Fix nullable annotation
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user