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

Commit 900731de authored by Daisuke Miyakawa's avatar Daisuke Miyakawa
Browse files

Honor '+' in phone export in vCard.

Currently no test because of temporal reason. I'll do in the near future...

Bug: 2417138
parent 5310b36a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -689,7 +689,9 @@ public class VCardBuilder {
        final int length = phoneNumber.length();
        for (int i = 0; i < length; i++) {
            final char ch = phoneNumber.charAt(i);
            if (Character.isDigit(ch)) {
            // TODO: add a test case for string with '+', and care the other possible issues
            // which may happen by ignoring non-digits other than '+'.
            if (Character.isDigit(ch) || ch == '+') {
                builder.append(ch);
            } else if ((ch == ';' || ch == '\n') && builder.length() > 0) {
                phoneList.add(builder.toString());