Skip to content

Commit

Permalink
fix ff-esr detection for htmlunit 4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Oct 20, 2024
1 parent a48d62d commit 919c855
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ else if (name.startsWith("Edge")) {
seed = BrowserVersion.EDGE;
}
else if (name.startsWith("FF")) {
seed = (code == 115) ? BrowserVersion.FIREFOX_ESR : BrowserVersion.FIREFOX;
seed = (code == 128) ? BrowserVersion.FIREFOX_ESR : BrowserVersion.FIREFOX;
}
else {
throw new IllegalArgumentException(
Expand Down

0 comments on commit 919c855

Please sign in to comment.