Skip to content

Commit

Permalink
Merge pull request #16 from quexten/feature/no_memguard_mode
Browse files Browse the repository at this point in the history
Fix browserbiometrics for chromium
  • Loading branch information
quexten authored Dec 23, 2023
2 parents c49e322 + 1cea2d9 commit ccbfbfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

func main() {
if len(os.Args) > 1 && strings.Contains(os.Args[1], "com.8bit.bitwarden.json") {
if len(os.Args) > 1 && (strings.Contains(os.Args[1], "com.8bit.bitwarden.json") || strings.Contains(os.Args[1], "chrome-extension://")) {
browserbiometrics.Main()
return
}
Expand Down

0 comments on commit ccbfbfe

Please sign in to comment.