mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 04:51:42 +02:00
Fix nullability errors in MediaBrowser.MediaEncoding
This commit is contained in:
parent
f3e74cb421
commit
e82829c444
1 changed files with 1 additions and 1 deletions
|
|
@ -178,7 +178,7 @@ namespace MediaBrowser.MediaEncoding.Attachments
|
|||
|
||||
process.Start();
|
||||
|
||||
var ranToCompletion = await process.WaitForExitAsync(cancellationToken).ConfigureAwait(false);
|
||||
var ranToCompletion = await ProcessExtensions.WaitForExitAsync(process, cancellationToken).ConfigureAwait(false);
|
||||
|
||||
if (!ranToCompletion)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue