correct validation for 'channelName'

pull/1/head
ansuz 7 years ago
parent 4e8335bfdd
commit a5b7b0191f

@ -9,7 +9,7 @@ const Pull = require('pull-stream');
const isValidChannelId = function (id) {
return typeof(id) === 'string' &&
[32, 48].indexOf(id.length) > -1 &&
id.length >= 32 && id.length < 50 &&
/^[a-zA-Z0-9=+-]*$/.test(id);
};
@ -470,4 +470,4 @@ module.exports.create = function (
setInterval(function () {
flushUnusedChannels(env, function () { });
}, 5000);
};
};

Loading…
Cancel
Save