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

Commit 8679b0f6 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "MAP: Fix parsing special character issue in vcard email."

parents aebf80d8 91428fc2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -225,6 +225,7 @@ public abstract class BluetoothMapbMessage {
                        // Empty phone number - ignore
                }
                else if(line.startsWith("EMAIL:")){
                    line = line.replace("&lt;", "<").replace("&gt;", ">");
                    parts = line.split("[^\\\\]:"); // Split on "un-escaped" :
                    if(parts.length == 2) {
                        String[] subParts = parts[1].split("[^\\\\];");