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

Commit afee7bdd 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

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

Change-Id: I5d6bf8dac1a50b62eacbe9dd5255dd5af4dfbedb
parents 8973ee88 df65b78e
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);
            }