Skip to content

Commit aa5e302

Browse files
committed
db/API.js: missing "let"
Found by the Typescript compiler when doing an experimental conversion.
1 parent b9e537c commit aa5e302

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node/db/API.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ exports.getHTML = async function(padID, rev)
260260
}
261261

262262
// get the html of this revision
263-
html = await exportHtml.getPadHTML(pad, rev);
263+
let html = await exportHtml.getPadHTML(pad, rev);
264264

265265
// wrap the HTML
266266
html = "<!DOCTYPE HTML><html><body>" + html + "</body></html>";

0 commit comments

Comments
 (0)