Sanitize value of SOGoMailAutoSave

This commit is contained in:
Francis Lachapelle
2019-09-26 11:17:15 -04:00
parent 2fbe721c60
commit eafbdd3884
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -543,7 +543,7 @@ NSString *SOGoWeekStartFirstFullWeek = @"FirstFullWeek";
{
NSString *s;
if ([newValue intValue] == 0)
if ([newValue intValue] <= 0)
s = @"5";
else
s = newValue;
@@ -557,7 +557,7 @@ NSString *SOGoWeekStartFirstFullWeek = @"FirstFullWeek";
s = [self stringForKey: @"SOGoMailAutoSave"];
if ([s intValue] == 0)
if ([s intValue] <= 0)
s = @"5";
return s;
+1 -1
View File
@@ -384,7 +384,7 @@ function initAddresses() {
}
function initAutoSaveTimer() {
var autoSave = parseInt(UserDefaults["SOGoMailAutoSave"]) || 5;
var autoSave = Math.abs(parseInt(UserDefaults["SOGoMailAutoSave"])) || 5;
if (autoSave) {
var interval;