Skip to content

Commit

Permalink
Add adapter artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
fippo committed Mar 28, 2024
1 parent 1615d2f commit e947f74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion release/adapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -2374,7 +2374,7 @@ function detectBrowser(window) {
if (chromium) {
return {
browser: 'chrome',
version: chromium.version
version: parseInt(chromium.version, 10)
};
}
}
Expand Down
2 changes: 1 addition & 1 deletion release/adapter_no_global.js
Original file line number Diff line number Diff line change
Expand Up @@ -2374,7 +2374,7 @@ function detectBrowser(window) {
if (chromium) {
return {
browser: 'chrome',
version: chromium.version
version: parseInt(chromium.version, 10)
};
}
}
Expand Down

0 comments on commit e947f74

Please sign in to comment.