From 00bc79439a87fc606fbc4e3fa4f681338219e565 Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Mon, 30 Oct 2017 10:52:00 -0400 Subject: [PATCH] FIX: Couldn't disagree with "notify moderator" flags --- app/models/post_action.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/post_action.rb b/app/models/post_action.rb index f6760a3a3bd..adb1cf09142 100644 --- a/app/models/post_action.rb +++ b/app/models/post_action.rb @@ -164,7 +164,7 @@ SQL if moderator.id == Discourse::SYSTEM_USER_ID PostActionType.auto_action_flag_types.values else - PostActionType.flag_types_without_custom.values + PostActionType.notify_flag_type_ids end actions = PostAction.where(post_id: post.id)