Skip to content

Commit fae56f4

Browse files
authored
Fix variable declaration for recommended certificate
1 parent 3843241 commit fae56f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

web/installer.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,9 @@ let installer = (function () {
198198
_setProgress(30);
199199
// TRY: get recommended certificate name from README and find matching release
200200
let chosenRelease = null;
201+
let recommended = null;
201202
try {
202-
const recommended = await _getRecommendedCertificate();
203+
recommended = await _getRecommendedCertificate();
203204
if (recommended) {
204205
// Try to find a release that mentions the recommended certificate in name, tag_name or body
205206
const normalise = s =>

0 commit comments

Comments
 (0)