From a6e79d24b3d44ffe7f1f58c5c41cc17cdad95f2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Fri, 27 Sep 2024 14:20:14 +0200 Subject: [PATCH] Update docs/features/software-catalog/external-integrations.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw --- docs/features/software-catalog/external-integrations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features/software-catalog/external-integrations.md b/docs/features/software-catalog/external-integrations.md index 98210007c6..d06657ceb9 100644 --- a/docs/features/software-catalog/external-integrations.md +++ b/docs/features/software-catalog/external-integrations.md @@ -853,7 +853,7 @@ export class SystemXReaderProcessor implements CatalogProcessor { } // For this example the JSON payload is a single entity. - const entity: Entity = JSON.parse(await response.buffer().toString()); + const entity: Entity = JSON.parse((await response.buffer()).toString()); emit(processingResult.entity(location, entity)); // Update the cache with the new ETag and entity used for the next run.