Merge pull request #2264 from MediaBrowser/dev

fix process exit
This commit is contained in:
Luke 2016-11-01 02:00:48 -04:00 committed by GitHub
commit e6d3f1041d

View File

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