From cd2869c7677a5085bdfaccf08131079b1bd9fa7a Mon Sep 17 00:00:00 2001 From: Guo Xiang Tan Date: Sat, 3 Jun 2017 07:18:11 +0900 Subject: [PATCH] Revert "Skip validations when Discobot creates new posts." This reverts commit ca7e9067740bd7919340ae78091418e732980225. Post validations are already skipped for admin users. Skipping validations cause polls to not work. --- .../lib/discourse_narrative_bot/actions.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/discourse-narrative-bot/lib/discourse_narrative_bot/actions.rb b/plugins/discourse-narrative-bot/lib/discourse_narrative_bot/actions.rb index a005e6b4ec4..6315bb9c90c 100644 --- a/plugins/discourse-narrative-bot/lib/discourse_narrative_bot/actions.rb +++ b/plugins/discourse-narrative-bot/lib/discourse_narrative_bot/actions.rb @@ -11,15 +11,14 @@ module DiscourseNarrativeBot default_opts = { raw: raw, topic_id: post.topic_id, - reply_to_post_number: post.post_number, - skip_validations: true + reply_to_post_number: post.post_number } new_post = PostCreator.create!(self.discobot_user, default_opts.merge(opts)) reset_rate_limits(post) if new_post new_post else - PostCreator.create!(self.discobot_user, { raw: raw, skip_validations: true }.merge(opts)) + PostCreator.create!(self.discobot_user, { raw: raw }.merge(opts)) end end