Skip to content

Commit 3850859

Browse files
committed
Fix firefox certutil availability check
1 parent 1d208b2 commit 3850859

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interceptors/fresh-firefox.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class FreshFirefox implements Interceptor {
8383

8484
return !!firefoxBrowser && // Must have Firefox installed
8585
parseInt(firefoxBrowser.version.split('.')[0], 0) >= 58 && // Must use cert9.db
86-
getCertutilCommand().then(() => true).catch(() => false) // Must have certutil available
86+
await getCertutilCommand().then(() => true).catch(() => false) // Must have certutil available
8787
}
8888

8989
async startFirefox(

0 commit comments

Comments
 (0)