superfluous callback

This commit is contained in:
Zach Leatherman 2018-01-27 23:21:32 -06:00
parent ec1e9df9e0
commit 3b9f9c111e

View File

@ -37,7 +37,7 @@ module.exports = function(eleventyConfig) {
return; return;
} }
HtmlToAbsoluteUrls(htmlContent, base, callback).then(result => { HtmlToAbsoluteUrls(htmlContent, base).then(result => {
callback(null, result.html); callback(null, result.html);
}); });
}, true); }, true);