Don't check for updates if running .NET Core

This commit is contained in:
flightlevel 2018-12-23 21:03:09 +11:00
parent 2c1b6dbf9f
commit 61d333cbc3
1 changed files with 5 additions and 0 deletions

View File

@ -88,6 +88,11 @@ namespace Jackett.Common.Services
logger.Info($"Skipping update check as it is disabled.");
return;
}
if (DotNetCoreUtil.IsRunningOnDotNetCore)
{
logger.Info($"Skipping update check as running Jackett on .NET Core is still in preview. Updates must be performed manually at this time.");
return;
}
forceupdatecheck = true;