ContactPicker icon indicating copy to clipboard operation
ContactPicker copied to clipboard

ignores other phone numbers of same type

Open ghost opened this issue 9 years ago • 1 comments

if contact has more than 1 phone number with same type (f.e. mobile), only first one will be selected. This is probably because of this: JSONObject phones = new JSONObject(); phones.put(type + "", phoneNumber); Should be phones.put(phoneNumber, type + ""); phoneNumber as a key, not type.

ghost avatar Dec 22 '15 14:12 ghost

I got your point and working on it.

hazemhagrass avatar Feb 15 '16 11:02 hazemhagrass