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

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

Merge "Mms: Fix FC issue that when tapping contact icon many times"

parents ed463bc7 3322c2d1
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -340,8 +340,11 @@ public class QuickContactBadge extends ImageView implements OnClickListener {
            try {
                switch(token) {
                    case TOKEN_PHONE_LOOKUP_AND_TRIGGER:
                        String contactExtra = extras.getString(EXTRA_URI_CONTENT);
                        if (contactExtra != null) {
                            trigger = true;
                        createUri = Uri.fromParts("tel", extras.getString(EXTRA_URI_CONTENT), null);
                            createUri = Uri.fromParts("tel", contactExtra, null);
                        }

                        //$FALL-THROUGH$
                    case TOKEN_PHONE_LOOKUP: {