From 53845c86f0c85fc4f1e780c955f9e4bb27f5fea3 Mon Sep 17 00:00:00 2001 From: Trevor Blanarik Date: Wed, 11 Sep 2024 03:33:46 +0000 Subject: [PATCH] bug fix --- function_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/function_app.py b/function_app.py index 4c56ce0..cf8866c 100644 --- a/function_app.py +++ b/function_app.py @@ -18,7 +18,7 @@ def spotbot(req: func.HttpRequest) -> func.HttpResponse: logging.error('Invalid JSON received') return func.HttpResponse("Invalid JSON", status_code=400) - content = create_content + content = create_content(req_body) return call_target(content) def create_content(req_body):