Revert "fixing bug that caused plugin language files to not be parsed"

This reverts commit b2bb1a7c24.
This commit is contained in:
Julian Lam
2017-01-23 11:27:35 -05:00
parent b2bb1a7c24
commit 372138c789

View File

@@ -28,7 +28,7 @@ function getTranslationTree(callback) {
});
// Filter out plugins with invalid paths
async.filter(paths, file.exists, function (err, paths) {
async.filter(paths, file.exists, function (paths) {
next(null, paths);
});
},