FIX: prevents trigger post read count update on non existing post (#8128)

This commit is contained in:
Joffrey JAFFEUX 2019-10-02 02:57:34 +02:00 committed by Sam
parent e5af03be01
commit 3ee6e859ec

View File

@ -390,6 +390,7 @@ SQL
end
def self.trigger_post_read_count_update(post, groups, last_read_post_number, user_id)
return if !post
return if groups.empty?
opts = { readers_count: post.readers_count, reader_id: user_id }
post.publish_change_to_clients!(:read, opts)