comments: fix incorrect comment links in mentions.
Fix mentions incorrectly linking to comments like this:
https://danbooru.donmai.us/posts/1234#comment-5678
when it should have been this
https://danbooru.donmai.us/posts/1234#comment_5678
Change comment links to this to ensure they're permanent:
https://danbooru.donmai.us/comments/5678
The comment show action will redirect from there to the post with the
comment in context.
This commit is contained in:
@@ -21,7 +21,7 @@ class Comment < ApplicationRecord
|
||||
mentionable(
|
||||
:message_field => :body,
|
||||
:title => ->(user_name) {"#{creator.name} mentioned you in a comment on post ##{post_id}"},
|
||||
:body => ->(user_name) {"@#{creator.name} mentioned you in a \"comment\":#{Routes.post_path(post, anchor: "comment-#{id}")} on post ##{post_id}:\n\n[quote]\n#{DText.extract_mention(body, "@" + user_name)}\n[/quote]\n"}
|
||||
:body => ->(user_name) {"@#{creator.name} mentioned you in comment ##{id} on post ##{post_id}:\n\n[quote]\n#{DText.extract_mention(body, "@" + user_name)}\n[/quote]\n"}
|
||||
)
|
||||
|
||||
module SearchMethods
|
||||
|
||||
Reference in New Issue
Block a user