FIX: Don't unassign topic on flag reviewed if topic has been deleted.
* Should have a test for this.
This commit is contained in:
parent
e1c7869969
commit
fe68b6cc88
|
@ -215,7 +215,8 @@ after_initialize do
|
||||||
# Unassign if there are no more flags in the topic
|
# Unassign if there are no more flags in the topic
|
||||||
on(:flag_reviewed) do |post|
|
on(:flag_reviewed) do |post|
|
||||||
if SiteSetting.assign_locks_flags? &&
|
if SiteSetting.assign_locks_flags? &&
|
||||||
FlagQuery.flagged_post_actions(topic_id: post.topic_id).count == 0
|
post.topic &&
|
||||||
|
FlagQuery.flagged_post_actions(topic_id: post.topic.id).count == 0
|
||||||
|
|
||||||
assigner = ::TopicAssigner.new(post.topic, Discourse.system_user)
|
assigner = ::TopicAssigner.new(post.topic, Discourse.system_user)
|
||||||
assigner.unassign
|
assigner.unassign
|
||||||
|
|
Loading…
Reference in New Issue