FIX: Don't make topics visible unless the posts are regular

This commit is contained in:
Robin Ward 2020-04-20 14:56:21 -04:00
parent 98729c8e6e
commit e997a1f315

View File

@ -419,6 +419,7 @@ class PostCreator
return unless SiteSetting.embed_unlisted?
return unless @post.post_number > 1
return if @post.topic.visible?
return if @post.post_type != Post.types[:regular]
if embed = @post.topic.topic_embed
@post.topic.update_status('visible', true, @user)