Skip to content

Commit

Permalink
Pass extra parameter for user id.
Browse files Browse the repository at this point in the history
Change-Id: I2c2ed833946e18aeabbd7e0a7cb3e515a0d95d4e
  • Loading branch information
Amith Yamasani committed Mar 20, 2012
1 parent 9be0392 commit f591abb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bugmailer/src/com/android/commands/sendbug/SendBug.java
Expand Up @@ -87,7 +87,7 @@ private Intent tryBugReporter(Uri bugreportUri) {
if (mPm != null) {
final List<ResolveInfo> results;
try {
results = mPm.queryIntentActivities(intent, null, 0);
results = mPm.queryIntentActivities(intent, null, 0, 0);
} catch (RemoteException e) {
return null;
}
Expand Down

0 comments on commit f591abb

Please sign in to comment.