mirror of
https://github.com/discourse/discourse.git
synced 2025-04-19 20:59:05 +08:00
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.
This commit is contained in:
parent
418cb09713
commit
cd2869c767
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user