db/API.js: missing "let"
Found by the Typescript compiler when doing an experimental conversion.
This commit is contained in:
parent
b9e537ca4f
commit
aa5e302d99
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ exports.getHTML = async function(padID, rev)
|
|||
}
|
||||
|
||||
// get the html of this revision
|
||||
html = await exportHtml.getPadHTML(pad, rev);
|
||||
let html = await exportHtml.getPadHTML(pad, rev);
|
||||
|
||||
// wrap the HTML
|
||||
html = "<!DOCTYPE HTML><html><body>" + html + "</body></html>";
|
||||
|
|
Loading…
Reference in a new issue