BUG-2077 & BUG-2083: Fixed a bug where 0, which means that there is no update check, was not allowed. [skip ci9]

This commit is contained in:
Robin 2016-12-24 13:34:48 +01:00
parent 95903b3d28
commit 5c9fde65ed

View file

@ -427,7 +427,7 @@ namespace GreenshotPlugin.Core {
}
// Fix for excessive feed checking
if (UpdateCheckInterval <= 7 && LastSaveWithVersion.StartsWith("1.2"))
if (UpdateCheckInterval != 0 && UpdateCheckInterval <= 7 && LastSaveWithVersion.StartsWith("1.2"))
{
UpdateCheckInterval = 14;
}