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

Commit e09266e1 authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Compare rawContactIds using actual number value.

parent d5c5ed7b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -216,7 +216,7 @@ public class EntitySet extends ArrayList<EntityDelta> implements Parcelable {
        final int size = this.size();
        for (int i = 0; i < size; i++) {
            final Long currentId = getRawContactId(i);
            if (currentId == rawContactId) {
            if (rawContactId.equals(currentId)) {
                return i;
            }
        }