Skip to content

Commit

Permalink
Merge pull request #7478 from FokkeZB/patch-35
Browse files Browse the repository at this point in the history
[TIMOB-20003](5_1_X) Permission request error response message prefixed with namespace
  • Loading branch information
hansemannn committed Nov 23, 2015
2 parents 879828f + 3b49564 commit 15a7156
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ private void permissionCallback(int[] grantResults, KrollFunction callback, Krol
callback.callAsync(context, response);
} else {
KrollDict response = new KrollDict();
response.putCodeAndMessage(-1, permission + "One or more permission(s) were denied");
response.putCodeAndMessage(-1, "One or more permission(s) were denied");
callback.callAsync(context, response);
}
}
Expand Down

0 comments on commit 15a7156

Please sign in to comment.