Small improvement

This commit is contained in:
M66B 2023-09-07 22:16:24 +02:00
parent a580b09b4e
commit 571e7c9913
1 changed files with 1 additions and 1 deletions

View File

@ -287,10 +287,10 @@ public class FragmentOptionsConnection extends FragmentBase implements SharedPre
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
try {
System.setProperty("fairemail.tcp_keep_alive", Boolean.toString(checked));
prefs.edit().putBoolean("tcp_keep_alive", checked).apply();
} catch (Throwable ex) {
Log.e(ex);
}
prefs.edit().putBoolean("tcp_keep_alive", checked).apply();
}
});