mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-02 21:24:15 -04:00
Fix nullability errors in MediaBrowser.MediaEncoding
This commit is contained in:
parent
f3e74cb421
commit
e82829c444
@ -178,7 +178,7 @@ namespace MediaBrowser.MediaEncoding.Attachments
|
|||||||
|
|
||||||
process.Start();
|
process.Start();
|
||||||
|
|
||||||
var ranToCompletion = await process.WaitForExitAsync(cancellationToken).ConfigureAwait(false);
|
var ranToCompletion = await ProcessExtensions.WaitForExitAsync(process, cancellationToken).ConfigureAwait(false);
|
||||||
|
|
||||||
if (!ranToCompletion)
|
if (!ranToCompletion)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user