mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Add missing call to ConfigureAwait()
This commit is contained in:
parent
e0f40f57d8
commit
4efdc63337
@ -20,7 +20,7 @@ namespace MediaBrowser.Common.Extensions
|
|||||||
{
|
{
|
||||||
using (var cancelTokenSource = new CancellationTokenSource(timeout))
|
using (var cancelTokenSource = new CancellationTokenSource(timeout))
|
||||||
{
|
{
|
||||||
return await WaitForExitAsync(process, cancelTokenSource.Token);
|
return await WaitForExitAsync(process, cancelTokenSource.Token).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user