From 68e7ee7f07603e472b8ad3b5d05202745f7a38f9 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Sun, 1 Dec 2013 20:07:30 -0500 Subject: [PATCH] signature parsing now calls its own postTools method (with associated plugin hook --- src/posts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posts.js b/src/posts.js index 9b36e79da7..3fd6205b57 100644 --- a/src/posts.js +++ b/src/posts.js @@ -208,7 +208,7 @@ var RDB = require('./redis'), return callback(); } - postTools.parse(userData.signature, function(err, signature) { + postTools.parseSignature(userData.signature, function(err, signature) { post.username = userData.username || 'anonymous'; post.userslug = userData.userslug || ''; post.user_rep = userData.reputation || 0;