Fix nullable annotation

This commit is contained in:
Richard Torhan 2025-11-27 18:03:10 +01:00 committed by Bond_009
parent 140c459ac3
commit e70355fbe1

View file

@ -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);