diff --git a/modules/CommentController.js b/modules/CommentController.js index 942cadaa0..ea8d9dd35 100644 --- a/modules/CommentController.js +++ b/modules/CommentController.js @@ -307,6 +307,8 @@ CommentController.prototype.save = function ( comment, pageName ) { } return $.Deferred().reject( code, responseData ).promise(); } ).then( function ( responseData ) { + // Pass through watchlist state. + responseData.watchlist = data.watchlist; controller.update( responseData, comment, pageName, replyWidget ); } ); } );