check err

This commit is contained in:
barisusakli
2014-09-24 21:37:26 -04:00
parent 412263f430
commit 1fe5a8788f

View File

@@ -151,6 +151,9 @@ function getTemplatesListing(req, res, next) {
},
config: function(next) {
fs.readFile(path.join(nconf.get('views_dir'), 'config.json'), function(err, config) {
if (err) {
return next(err);
}
config = JSON.parse(config.toString());
plugins.fireHook('filter:templates.get_config', config, next);
});
@@ -159,7 +162,7 @@ function getTemplatesListing(req, res, next) {
if (err) {
return next(err);
}
var data = [];
data = results.views.filter(function(value, index, self) {
return self.indexOf(value) === index;