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);
};

Loading…
Cancel
Save