2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-10 14:42:52 +08:00

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)