From 5c9fde65edb71ae8686e4fd74083d308e77c7acf Mon Sep 17 00:00:00 2001 From: Robin Date: Sat, 24 Dec 2016 13:34:48 +0100 Subject: [PATCH] BUG-2077 & BUG-2083: Fixed a bug where 0, which means that there is no update check, was not allowed. [skip ci9] --- GreenshotPlugin/Core/CoreConfiguration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GreenshotPlugin/Core/CoreConfiguration.cs b/GreenshotPlugin/Core/CoreConfiguration.cs index e49fb491b..54c146773 100644 --- a/GreenshotPlugin/Core/CoreConfiguration.cs +++ b/GreenshotPlugin/Core/CoreConfiguration.cs @@ -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; }