fixes #1812
This commit is contained in:
@@ -55,7 +55,10 @@ class PostPresenter < Presenter
|
|||||||
string = []
|
string = []
|
||||||
|
|
||||||
if @post.character_tags.any?
|
if @post.character_tags.any?
|
||||||
string << @post.character_tags.slice(0, 5).to_sentence
|
chartags = @post.character_tags.slice(0, 5).map do |tag|
|
||||||
|
tag.match(/^(.+?)(?:_\(.+\))?$/)[1]
|
||||||
|
end
|
||||||
|
string << chartags.to_sentence
|
||||||
end
|
end
|
||||||
|
|
||||||
if @post.copyright_tags.any?
|
if @post.copyright_tags.any?
|
||||||
|
|||||||
Reference in New Issue
Block a user