db/API.js: missing "let"

Found by the Typescript compiler when doing an experimental conversion.
This commit is contained in:
muxator 2019-03-26 23:42:35 +01:00 committed by muxator
parent b9e537ca4f
commit aa5e302d99

View file

@ -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>";