Remove IsRunningLegacyOwin check

Dead code since upgrade to Jackett.Server
This commit is contained in:
flightlevel
2018-08-18 17:09:19 +10:00
parent 0ddaa3bef4
commit 524a0c7885
5 changed files with 2 additions and 50 deletions

View File

@@ -338,16 +338,7 @@ namespace Jackett.Common.Services
}
logger.Info("Exiting Jackett..");
//TODO: Remove once off Owin
if (EnvironmentUtil.IsRunningLegacyOwin)
{
Engine.Exit(0);
}
else
{
Environment.Exit(0);
}
Environment.Exit(0);
}
}
}