mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-06-05 21:49:48 +02:00
Allow setting alarms once for the next day.
(cherry picked from commit 417ea02)
This commit is contained in:
@@ -121,9 +121,15 @@ public class GBAlarm implements Parcelable, Comparable {
|
||||
}
|
||||
|
||||
public Calendar getAlarmCal() {
|
||||
|
||||
Calendar alarm = Calendar.getInstance();
|
||||
Calendar now = Calendar.getInstance();
|
||||
alarm.set(Calendar.HOUR_OF_DAY, this.hour);
|
||||
alarm.set(Calendar.MINUTE, this.minute);
|
||||
if (now.after(alarm) && repetition == ALARM_ONCE) {
|
||||
//if the alarm is in the past set it to tomorrow
|
||||
alarm.add(Calendar.DATE, 1);
|
||||
}
|
||||
return alarm;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user