浏览代码

fix process exit

Luke Pulverenti 8 年之前
父节点
当前提交
7036901a9b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Emby.Common.Implementations/Diagnostics/CommonProcess.cs

+ 1 - 1
Emby.Common.Implementations/Diagnostics/CommonProcess.cs

@@ -56,7 +56,7 @@ namespace Emby.Common.Implementations.Diagnostics
         {
         {
             if (Exited != null)
             if (Exited != null)
             {
             {
-                Exited(_process, e);
+                Exited(this, e);
             }
             }
         }
         }