From 4cefa83253b8c848314386649d582ae4ebef0880 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Thu, 27 Jul 2023 18:18:08 +0200 Subject: [PATCH] [fix] check_kind:http --- source/logic/check_kinds/http_request.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/logic/check_kinds/http_request.ts b/source/logic/check_kinds/http_request.ts index 728a997..392b335 100644 --- a/source/logic/check_kinds/http_request.ts +++ b/source/logic/check_kinds/http_request.ts @@ -209,8 +209,10 @@ namespace _heimdall.check_kinds.http_request }[parameters.request.method], "path": url.pathname, "query": url.search, - "headers": {}, - "body": "", + "headers": { + "Host": url.host, + }, + "body": null, }; let http_response : (null | lib_plankton.http.type_response); try {