Sanitize value of SOGoMailAutoSave

pull/278/head
Francis Lachapelle 2019-09-26 11:17:15 -04:00
parent 2fbe721c60
commit eafbdd3884
2 changed files with 3 additions and 3 deletions

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;

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;