Browse Source

[Minor] Allow empty body in the controller

tags/2.6
Vsevolod Stakhov 3 years ago
parent
commit
1acd5507db
1 changed files with 0 additions and 8 deletions
  1. 0
    8
      src/controller.c

+ 0
- 8
src/controller.c View File

@@ -2090,14 +2090,6 @@ rspamd_controller_handle_scan (struct rspamd_http_connection_entry *conn_ent,
return 0;
}

if (rspamd_http_message_get_body (msg, NULL) == NULL) {
msg_err_session ("got zero length body, cannot continue");
rspamd_controller_send_error (conn_ent,
400,
"Empty body is not permitted");
return 0;
}

task = rspamd_task_new (session->ctx->worker, session->cfg, session->pool,
ctx->lang_det, ctx->event_loop, FALSE);


Loading…
Cancel
Save