Browse Source

[Minor] Fix idempotent stage fix

tags/1.7.0
Vsevolod Stakhov 6 years ago
parent
commit
2b7f12aa51
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/libmime/filter.c

+ 1
- 1
src/libmime/filter.c View File

@@ -266,7 +266,7 @@ insert_result_common (struct rspamd_task *task,
{
struct rspamd_symbol_result *s = NULL;

if (task->processed_stages & RSPAMD_TASK_STAGE_IDEMPOTENT) {
if (task->processed_stages & (RSPAMD_TASK_STAGE_IDEMPOTENT >> 1)) {
msg_err_task ("cannot insert symbol %s on idempotent phase",
symbol);


Loading…
Cancel
Save