kopia lustrzana https://github.com/ryukoposting/Signal-Android
Fix 30 day message duration.
Unfortunately leftover code from trying to repro a bug.fork-5.53.8
rodzic
42b5654a99
commit
1d0e00648f
|
@ -11,7 +11,7 @@ public enum KeepMessagesDuration {
|
||||||
FOREVER(0, R.string.preferences_storage__forever, Long.MAX_VALUE),
|
FOREVER(0, R.string.preferences_storage__forever, Long.MAX_VALUE),
|
||||||
ONE_YEAR(1, R.string.preferences_storage__one_year, TimeUnit.DAYS.toMillis(365)),
|
ONE_YEAR(1, R.string.preferences_storage__one_year, TimeUnit.DAYS.toMillis(365)),
|
||||||
SIX_MONTHS(2, R.string.preferences_storage__six_months, TimeUnit.DAYS.toMillis(183)),
|
SIX_MONTHS(2, R.string.preferences_storage__six_months, TimeUnit.DAYS.toMillis(183)),
|
||||||
THIRTY_DAYS(3, R.string.preferences_storage__thirty_days, TimeUnit.DAYS.toMillis(1));
|
THIRTY_DAYS(3, R.string.preferences_storage__thirty_days, TimeUnit.DAYS.toMillis(30));
|
||||||
|
|
||||||
private final int id;
|
private final int id;
|
||||||
private final int stringResource;
|
private final int stringResource;
|
||||||
|
|
Ładowanie…
Reference in New Issue