Skip to content

Commit

Permalink
Fix return code.
Browse files Browse the repository at this point in the history
  • Loading branch information
maniac103 committed Sep 6, 2012
1 parent 8a984df commit 9d4f57e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1666,7 +1666,7 @@ private static int runAction(Context context, String uri) {
Intent i = Intent.parseUri(uri, 0);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
context.startActivity(i);
return ACTION_RESULT_NOTRUN;
return ACTION_RESULT_RUNCUSTOM;
} catch (URISyntaxException e) {
} catch (ActivityNotFoundException e) {
}
Expand Down

0 comments on commit 9d4f57e

Please sign in to comment.