Skip to content

Commit

Permalink
enabled custum profiles on server
Browse files Browse the repository at this point in the history
  • Loading branch information
afischerdev committed Feb 6, 2024
1 parent 6a0f69d commit 9c5b380
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions brouter-server/src/main/java/btools/server/RouteServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,10 @@ public void run() {
if (wplist.size() < 10) {
SuspectManager.nearRecentWps.add(wplist);
}
if (params.containsKey("profile")) {
// already handled in readRoutingContext
params.remove("profile");
}
int engineMode = 0;
if (params.containsKey("engineMode")) {
engineMode = Integer.parseInt(params.get("engineMode"));
Expand Down

0 comments on commit 9c5b380

Please sign in to comment.