FIX: Unexpected return during system_message_sent event

Followup to 0bb51dc, should fix an issue with multiple system message events being sent
This commit is contained in:
Penar Musaraj 2020-09-22 12:56:21 -04:00
parent 4b94af077d
commit cfb3f4db13
No known key found for this signature in database
GPG Key ID: E390435D881FF0F7
1 changed files with 12 additions and 12 deletions

View File

@ -287,8 +287,7 @@ after_initialize do
)
self.on(:system_message_sent) do |args|
return if args[:message_type] != 'tl2_promotion_message'
return if !SiteSetting.discourse_narrative_bot_enabled
if args[:message_type] == 'tl2_promotion_message' && SiteSetting.discourse_narrative_bot_enabled
raw = I18n.t("discourse_narrative_bot.tl2_promotion_message.text_body_template",
discobot_username: ::DiscourseNarrativeBot::Base.new.discobot_username,
@ -302,6 +301,7 @@ after_initialize do
skip_validations: true
)
end
end
PostGuardian.class_eval do
alias_method :existing_can_create_post?, :can_create_post?