Skip to content

Commit

Permalink
Fix #47
Browse files Browse the repository at this point in the history
  • Loading branch information
RikkaW committed Oct 14, 2022
1 parent 214f005 commit 5168ffd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static void callActivityOnNewIntent(Instrumentation instrumentation, Acti
}
if (callActivityOnNewIntentMethod != null) {
try {
callActivityOnNewIntentMethod.invoke(instrumentation, intent, activity, intent);
callActivityOnNewIntentMethod.invoke(instrumentation, activity, intent);
} catch (IllegalAccessException | InvocationTargetException e) {
e.printStackTrace();
}
Expand Down

0 comments on commit 5168ffd

Please sign in to comment.