mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-02 20:16:04 +01:00
a better conditional, just to please baris
This commit is contained in:
@@ -18,7 +18,7 @@ var fs = require('fs'),
|
|||||||
RDB.smembers('plugins:active', next);
|
RDB.smembers('plugins:active', next);
|
||||||
},
|
},
|
||||||
function(plugins, next) {
|
function(plugins, next) {
|
||||||
if (plugins.length > 0) {
|
if (plugins && Array.isArray(plugins) && plugins.length > 0) {
|
||||||
async.each(plugins, function(plugin) {
|
async.each(plugins, function(plugin) {
|
||||||
// TODO: Update this check to also check node_modules
|
// TODO: Update this check to also check node_modules
|
||||||
var pluginPath = path.join(__dirname, '../plugins/', plugin),
|
var pluginPath = path.join(__dirname, '../plugins/', plugin),
|
||||||
|
|||||||
Reference in New Issue
Block a user