mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
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:
parent
95903b3d28
commit
5c9fde65ed
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue