Merge "fix google widget timing issue"
This commit is contained in:
@@ -396,8 +396,9 @@ public class QuickContactBadge extends ImageView implements OnClickListener {
|
|||||||
// Prompt user to add this person to contacts
|
// Prompt user to add this person to contacts
|
||||||
final Intent intent = new Intent(Intents.SHOW_OR_CREATE_CONTACT, createUri);
|
final Intent intent = new Intent(Intents.SHOW_OR_CREATE_CONTACT, createUri);
|
||||||
if (extras != null) {
|
if (extras != null) {
|
||||||
extras.remove(EXTRA_URI_CONTENT);
|
Bundle bundle = new Bundle(extras);
|
||||||
intent.putExtras(extras);
|
bundle.remove(EXTRA_URI_CONTENT);
|
||||||
|
intent.putExtras(bundle);
|
||||||
}
|
}
|
||||||
getContext().startActivity(intent);
|
getContext().startActivity(intent);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user