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

Commit 1bbce645 authored by Paul Soulos's avatar Paul Soulos
Browse files

Properly parses all day events in contact card

bug: 17362750
Change-Id: Ie093a094643631ea4f55fbda0fdef26b9d04ef7a
parent 3c8a0998
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -130,7 +130,7 @@ public class CalendarInteraction implements ContactInteraction {
    }

    public Boolean getAllDay() {
        return mValues.getAsBoolean(Attendees.ALL_DAY);
        return mValues.getAsInteger(Attendees.ALL_DAY) == 1 ? true : false;
    }

    public Integer getAvailability() {