mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-20 06:29:53 +01:00
Merge pull request #3197 from User1m/patch-1
fixed plugin dependency issue
This commit is contained in:
commit
bb83d39ff0
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ exports.getPackages = function (cb) {
|
||||||
|
|
||||||
var tmp = {};
|
var tmp = {};
|
||||||
tmp[data.name] = data;
|
tmp[data.name] = data;
|
||||||
flatten(tmp[undefined].dependencies);
|
flatten(tmp[data.name].dependencies);
|
||||||
cb(null, packages);
|
cb(null, packages);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue