fixed a crash

v1.18.x
Baris Usakli 12 years ago
parent 599789634a
commit 7795a9ead2

@ -167,7 +167,7 @@ var RDB = require('./redis.js'),
}); });
}); });
// Restore topic if it is the only post // Restore topic if it is the only post
topics.getTopicField(postData.tid, 'postcount', function(err, count) { topics.getTopicField(postData.tid, 'postcount', function(err, count) {
if (count === '1') { if (count === '1') {
threadTools.restore(postData.tid, uid); threadTools.restore(postData.tid, uid);
@ -186,6 +186,7 @@ var RDB = require('./redis.js'),
} }
PostTools.toHTML = function(raw, callback) { PostTools.toHTML = function(raw, callback) {
raw = raw || '';
plugins.fireHook('filter:post.parse', raw, function(parsed) { plugins.fireHook('filter:post.parse', raw, function(parsed) {
var cheerio = require('cheerio'); var cheerio = require('cheerio');

Loading…
Cancel
Save