Skip to content

Commit

Permalink
Fix Android
Browse files Browse the repository at this point in the history
  • Loading branch information
fortuna committed Dec 3, 2024
1 parent 8b1e3cb commit 1f17917
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ private void executeAsync(
final String methodName = args.getString(0);
final String input = args.getString(1);
LOG.fine(String.format(Locale.ROOT, "Calling InvokeMethod(%s, %s)", methodName, input));
final InvokeMethodResult result = Outline.InvokeMethod(methodName, input);
final InvokeMethodResult result = Outline.invokeMethod(methodName, input);
if (result.getError() != null) {
LOG.warning(String.format(Locale.ROOT, "InvokeMethod(%s) failed: %s", methodName, result.getError()));
sendActionResult(callback, result.getError());
Expand Down

0 comments on commit 1f17917

Please sign in to comment.