1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-20 09:35:22 +02:00

Bump Firefox Min Version (#6025)

* Bump Firefox Min Version

* Remove Version Check for Biometrics Support
This commit is contained in:
Justin Baur 2023-08-14 12:04:44 -04:00 committed by GitHub
parent 4b1570b0b3
commit 3880aeed81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 6 deletions

View File

@ -105,7 +105,7 @@
"applications": {
"gecko": {
"id": "{446900e4-71c2-419f-a6a7-df9c091e268b}",
"strict_min_version": "42.0"
"strict_min_version": "91.0"
}
},
"sidebar_action": {

View File

@ -113,7 +113,7 @@
"applications": {
"gecko": {
"id": "{446900e4-71c2-419f-a6a7-df9c091e268b}",
"strict_min_version": "42.0"
"strict_min_version": "91.0"
}
},
"sidebar_action": {

View File

@ -314,10 +314,6 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService
return false;
}
if (this.isFirefox()) {
return parseInt((await browser.runtime.getBrowserInfo()).version.split(".")[0], 10) >= 87;
}
return true;
}