This commit is contained in:
Hivert Quentin
2025-03-26 09:26:35 +01:00
parent 4be3ba227c
commit ecfc54a0af
2 changed files with 25 additions and 9 deletions

View File

@@ -1025,7 +1025,13 @@ NSComparisonResult languageSort(id el1, id el2, void *context)
v = [self integerForKey: @"SOGoInternalSyncInterval"];
if (!v)
{
NSLog(@"EASLOG: SOGoInternalSyncInterval didn't find value in conf, go with default 10");
v = 10;
}
else {
NSLog(@"EASLOG: SOGoInternalSyncInterval found, value is %@", v);
}
return v;
}