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

Commit 539bd560 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "fix google widget timing issue" am: 56db11df am: 86170faa am: df65b78e am: afee7bdd

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1782431

Change-Id: I185ea60a91270626f659664a62c960d2b138f179
parents 468b44f9 afee7bdd
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -396,8 +396,9 @@ public class QuickContactBadge extends ImageView implements OnClickListener {
                // Prompt user to add this person to contacts
                final Intent intent = new Intent(Intents.SHOW_OR_CREATE_CONTACT, createUri);
                if (extras != null) {
                    extras.remove(EXTRA_URI_CONTENT);
                    intent.putExtras(extras);
                    Bundle bundle = new Bundle(extras);
                    bundle.remove(EXTRA_URI_CONTENT);
                    intent.putExtras(bundle);
                }
                getContext().startActivity(intent);
            }