diff --git a/app/assets/javascripts/discourse/controllers/topic.js.es6 b/app/assets/javascripts/discourse/controllers/topic.js.es6 index a2fb293ea2..5722d2f5d0 100644 --- a/app/assets/javascripts/discourse/controllers/topic.js.es6 +++ b/app/assets/javascripts/discourse/controllers/topic.js.es6 @@ -428,16 +428,11 @@ export default Ember.Controller.extend(SelectedPostsCount, BufferedContent, { draftKey: Composer.REPLY_AS_NEW_TOPIC_KEY, categoryId: this.get('category.id') }).then(() => { - if (Em.isEmpty(quotedText)) { - return Discourse.Post.loadQuote(post.get('id')); - } else { - composerController.get('model').appendText(quotedText); - } + return Em.isEmpty(quotedText) ? "" : quotedText; }).then(q => { const postUrl = `${location.protocol}//${location.host}${post.get('url')}`; const postLink = `[${Handlebars.escapeExpression(self.get('model.title'))}](${postUrl})`; - - this.appEvents.trigger('composer:insert-text', `${I18n.t("post.continue_discussion", { postLink })}\n\n${q}`); + composerController.get('model').appendText(`${I18n.t("post.continue_discussion", { postLink })}\n\n${q}`); }); },