Skip to content

Commit

Permalink
fix(query): parse network param when length is 4
Browse files Browse the repository at this point in the history
  • Loading branch information
vincejv committed Jan 24, 2023
1 parent b7965c3 commit c11052c
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ public Uni<LoadRespDto> processQuery(QueryDto query) {
advertFlag = BooleanUtils.toBoolean(tokens[2]);
}
} else if (tokens.length == 4) {
network = tokens[2];
advertFlag = BooleanUtils.toBoolean(tokens[3]);
}

Expand Down

0 comments on commit c11052c

Please sign in to comment.