diff options
-rw-r--r-- | src/plugins/lua/force_actions.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/lua/force_actions.lua b/src/plugins/lua/force_actions.lua index 62e7cdc5d..9355c5249 100644 --- a/src/plugins/lua/force_actions.lua +++ b/src/plugins/lua/force_actions.lua @@ -91,7 +91,9 @@ local function gen_cb(params) end local cact = task:get_metric_action('default') - + if not params.message and not params.subject and params.act and cact == params.act then + return false + end if params.honor and params.honor[cact] then return false elseif params.raction and not params.raction[cact] then |