From d30058357471aed1e39dbe2cfc564607c766c3c3 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sat, 2 Sep 2017 10:01:38 -0600 Subject: [PATCH] Fix typo --- core/art.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/art.js b/core/art.js index cb71fdb4..28657fc0 100644 --- a/core/art.js +++ b/core/art.js @@ -157,7 +157,7 @@ function getArt(name, options, cb) { // Ignore anything not allowed in |options.types| // const fext = paths.extname(file); - if(!options.type.includes(fext.toLowerCase())) { + if(!options.types.includes(fext.toLowerCase())) { return false; }