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

Commit 56db11df authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "fix google widget timing issue"

parents c39842ab 0dbe6f7a
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);
            }