Skip to content

Commit

Permalink
Update src/js/utils.js
Browse files Browse the repository at this point in the history
  • Loading branch information
fippo authored Mar 28, 2024
1 parent 65038a4 commit 66d4ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export function detectBrowser(window) {
return brand.brand === 'Chromium';
});
if (chromium) {
return {browser: 'chrome', version: parseInt(chromium.version)};
return {browser: 'chrome', version: parseInt(chromium.version, 10)};
}
}

Expand Down

0 comments on commit 66d4ea1

Please sign in to comment.