Skip to content

Commit

Permalink
Fix client dev target not adding arguments (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
coehlrich authored Nov 30, 2024
1 parent 85230ce commit b618c1f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected String[] preLaunch(String[] arguments, ModuleLayer layer) {
args.put("accessToken", "0");
}

return super.preLaunch(arguments, layer);
return super.preLaunch(args.getArguments(), layer);
}

@Override
Expand Down

0 comments on commit b618c1f

Please sign in to comment.