diff options
| author | sushilicious <*> | 2021-08-04 23:15:48 -0700 |
|---|---|---|
| committer | sushilicious <*> | 2021-08-04 23:15:48 -0700 |
| commit | 7fdef4b82b82cb882fd378bdad04420157fecae2 (patch) | |
| tree | 2067220218e64c76a581d1ffdb80383cef3f70c4 /MediaBrowser.Common/Extensions/ProcessExtensions.cs | |
| parent | 460fe76467031cd8dd89dff737575d2fc7310844 (diff) | |
| parent | 2521a13d7d8df3bfa5291386ba4389469f02ade8 (diff) | |
Merge branch 'master' of https://github.com/jellyfin/jellyfin into HEAD
Diffstat (limited to 'MediaBrowser.Common/Extensions/ProcessExtensions.cs')
| -rw-r--r-- | MediaBrowser.Common/Extensions/ProcessExtensions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Common/Extensions/ProcessExtensions.cs b/MediaBrowser.Common/Extensions/ProcessExtensions.cs index c74787122..08e01bfd6 100644 --- a/MediaBrowser.Common/Extensions/ProcessExtensions.cs +++ b/MediaBrowser.Common/Extensions/ProcessExtensions.cs @@ -40,7 +40,7 @@ namespace MediaBrowser.Common.Extensions // Add an event handler for the process exit event var tcs = new TaskCompletionSource<bool>(); - process.Exited += (sender, args) => tcs.TrySetResult(true); + process.Exited += (_, _) => tcs.TrySetResult(true); // Return immediately if the process has already exited if (process.HasExitedSafe()) |
