mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-23 23:20:51 +01:00
Fix nullable annotation
This commit is contained in:
parent
140c459ac3
commit
e70355fbe1
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue