From f2ffc2b5335d46b98e6ce8257b37d07a4fcedb07 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Sat, 1 Mar 2014 17:34:06 -0500 Subject: [PATCH] properly referencing the tid of the composer instead of blindly checking templates.get('topic_id') --- public/src/modules/composer.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/src/modules/composer.js b/public/src/modules/composer.js index 8b30a5aacf..07bbee5c88 100644 --- a/public/src/modules/composer.js +++ b/public/src/modules/composer.js @@ -390,12 +390,13 @@ define(['taskbar'], function(taskbar) { composer.createNewComposer(post_uuid); } - var tid = templates.get('topic_id'); + var tid = templates.get('topic_id'), + postData = composer.posts[post_uuid]; if (tid) { // Replying to a topic socket.emit('modules.composer.register', { uuid: post_uuid, - tid: templates.get('topic_id'), + tid: postData.tid, uid: app.uid }); }