properly set the pre-selected option

This commit is contained in:
adbenitez 2025-08-06 15:48:27 +02:00
parent 82ef0560a5
commit c0a65e2e9f

View file

@ -104,7 +104,10 @@ public class EphemeralMessagesDialog {
if (timespan < TimeUnit.DAYS.toSeconds(35)) {
return 6; // 1 week
}
return 7; // 5 weeks
if (timespan < TimeUnit.DAYS.toSeconds(365)) {
return 7; // 5 weeks
}
return 8; // 5 weeks
}
}