kopia lustrzana https://github.com/ryukoposting/Signal-Android
Fix bug when scheudling backups.
rodzic
a0172ddb2f
commit
033004719a
|
@ -52,7 +52,7 @@ public class LocalBackupListener extends PersistentAlarmManagerListener {
|
||||||
} else {
|
} else {
|
||||||
LocalDateTime now = LocalDateTime.now();
|
LocalDateTime now = LocalDateTime.now();
|
||||||
LocalDateTime next = now.withHour(2).withMinute(0).withSecond(0);
|
LocalDateTime next = now.withHour(2).withMinute(0).withSecond(0);
|
||||||
if (now.getHour() > 2) {
|
if (now.getHour() >= 2) {
|
||||||
next = next.plusDays(1);
|
next = next.plusDays(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue