fixing teasers, that I broke in the last commit

This commit is contained in:
Julian Lam
2013-08-27 15:00:35 -04:00
parent 54fdbcd947
commit 97641dbcda

View File

@@ -568,14 +568,14 @@ var RDB = require('./redis.js')
"timestamp" : timestamp
};
if(postData.content) {
if (postData.content) {
stripped = postData.content.replace(/>.+\n\n/, '');
postTools.toHTML(stripped, function(err, stripped) {
returnObj.stripped = utils.strip_tags(stripped);
returnObj.text = utils.strip_tags(stripped);
callback(null, returnObj);
});
} else {
returnObj.stripped = '';
returnObj.text = '';
callback(null, returnObj);
}
});