diff --git a/src/topics.js b/src/topics.js index 6b77b31d14..66af3845d3 100644 --- a/src/topics.js +++ b/src/topics.js @@ -33,7 +33,7 @@ var async = require('async'), return callback(new Error('no-privileges')); } else if (!cid) { return callback(new Error('invalid-cid')); - } else if (!title || title.length < parseInt(meta.config.minimumTitleLength, 10) { + } else if (!title || title.length < parseInt(meta.config.minimumTitleLength, 10)) { return callback(new Error('title-too-short'), null); } else if(title.length > parseInt(meta.config.maximumTitleLength, 10)) { return callback(new Error('title-too-long'), null);