From 3b9f9c111ea49b4ebad21837ea4c64149a1dfab0 Mon Sep 17 00:00:00 2001 From: Zach Leatherman Date: Sat, 27 Jan 2018 23:21:32 -0600 Subject: [PATCH] superfluous callback --- .eleventy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eleventy.js b/.eleventy.js index 0c4fd68..5166009 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -37,7 +37,7 @@ module.exports = function(eleventyConfig) { return; } - HtmlToAbsoluteUrls(htmlContent, base, callback).then(result => { + HtmlToAbsoluteUrls(htmlContent, base).then(result => { callback(null, result.html); }); }, true);