handle empty arrays when reducing

This commit is contained in:
ansuz 2017-05-19 09:11:28 +02:00
parent e7a458295b
commit d71e12713a
1 changed files with 1 additions and 1 deletions

2
rpc.js
View File

@ -456,7 +456,7 @@ var sumChannelSizes = function (sizes) {
// only allow positive numbers
return !(typeof(x) !== 'number' || x <= 0);
})
.reduce(function (a, b) { return a + b; });
.reduce(function (a, b) { return a + b; }, 0);
};
var pinChannel = function (Env, publicKey, channels, cb) {