parsing bug

This commit is contained in:
Paul Sori 2018-11-11 14:08:31 -05:00
parent 0e3d5a9717
commit 0c83dbceda

View File

@ -109,7 +109,7 @@ function recursiveScan(dir) {
recursiveScan(filepath);
} else {
// Make sure this is in our list of allowed files
if (fileTypesArray.indexOf(getFileType(files[i])) === -1) {
if (fileTypesArray.indexOf(getFileType(files[i]).toLowerCase()) === -1) {
continue;
}