Merge "fix google widget timing issue"

This commit is contained in:
Treehugger Robot
2021-09-24 18:57:13 +00:00
committed by Gerrit Code Review

View File

@@ -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);
}