Skip to content

Commit

Permalink
Merge pull request #669 from afischerdev/server
Browse files Browse the repository at this point in the history
Enabled custum profiles on server
  • Loading branch information
afischerdev committed Feb 20, 2024
2 parents 47ee77b + 9c5b380 commit e94b80e
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
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 e94b80e

Please sign in to comment.