Skip to content

Commit 53b3328

Browse files
committed
express/padreadonly.js: missing "let"
Found by the Typescript compiler when doing an experimental conversion.
1 parent b8df6ca commit 53b3328

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node/hooks/express/padreadonly.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ exports.expressCreateServer = function (hook_name, args, cb) {
1818

1919
if (await hasPadAccess(req, res)) {
2020
// render the html document
21-
html = await exporthtml.getPadHTMLDocument(padId, null);
21+
let html = await exporthtml.getPadHTMLDocument(padId, null);
2222
res.send(html);
2323
}
2424
});

0 commit comments

Comments
 (0)