FIX: Bot mentioned check should be case insensitive.

This commit is contained in:
Guo Xiang Tan
2017-06-08 18:59:44 +09:00
parent 251aa8c5f9
commit 977bbb1f45
2 changed files with 12 additions and 2 deletions

View File

@ -245,13 +245,13 @@ module DiscourseNarrativeBot
def bot_mentioned?
@bot_mentioned ||= PostAnalyzer.new(@post.raw, @post.topic_id).raw_mentions.include?(
self.discobot_user.username
self.discobot_user.username.downcase
)
end
def public_reply?
!SiteSetting.discourse_narrative_bot_disable_public_replies &&
(bot_mentioned? || reply_to_bot_post?(@post))
(reply_to_bot_post?(@post) || bot_mentioned?)
end
def terminate_track(data)