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

Commit 4a2a2eb4 authored by Daisuke Miyakawa's avatar Daisuke Miyakawa
Browse files

Fix vCard so that it looks at IM correctly.

Change-Id: I3afc01e2e5f55c254606379f353b030ea297ee36
parent 0263b0d8
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -954,7 +954,7 @@ public class VCardEntry {
                }
            }
            if (type < 0) {
                type = Phone.TYPE_HOME;
                type = Im.TYPE_HOME;
            }
            addIm(protocol, null, type, propValue, isPrimary);
        } else if (propName.equals(VCardConstants.PROPERTY_NOTE)) {
@@ -1195,12 +1195,14 @@ public class VCardEntry {
                builder.withValue(Data.MIMETYPE, Im.CONTENT_ITEM_TYPE);
                builder.withValue(Im.TYPE, imData.type);
                builder.withValue(Im.PROTOCOL, imData.protocol);
                builder.withValue(Im.DATA, imData.data);
                if (imData.protocol == Im.PROTOCOL_CUSTOM) {
                    builder.withValue(Im.CUSTOM_PROTOCOL, imData.customProtocol);
                }
                if (imData.isPrimary) {
                    builder.withValue(Data.IS_PRIMARY, 1);
                }
                operationList.add(builder.build());
            }
        }