Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2b66f928 authored by Christopher Tate's avatar Christopher Tate
Browse files

Calendar alarms probably all need to be exact...

Change-Id: I4249a25dc51e6860e1c05109d54bba982dc83f51
parent 2b6efc22
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ public class AlertUtils {
        return new AlarmManagerInterface() {
            @Override
            public void set(int type, long triggerAtMillis, PendingIntent operation) {
                mgr.set(type, triggerAtMillis, operation);
                mgr.setExact(type, triggerAtMillis, operation);
            }
        };
    }