Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tblanarik committed Sep 11, 2024
1 parent d459641 commit 53845c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion function_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 53845c8

Please sign in to comment.