We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d208b2 commit 3850859Copy full SHA for 3850859
src/interceptors/fresh-firefox.ts
@@ -83,7 +83,7 @@ export class FreshFirefox implements Interceptor {
83
84
return !!firefoxBrowser && // Must have Firefox installed
85
parseInt(firefoxBrowser.version.split('.')[0], 0) >= 58 && // Must use cert9.db
86
- getCertutilCommand().then(() => true).catch(() => false) // Must have certutil available
+ await getCertutilCommand().then(() => true).catch(() => false) // Must have certutil available
87
}
88
89
async startFirefox(
0 commit comments