Skip to content

Commit

Permalink
_get_server_side_mdx method modified in line 165 (check form request)
Browse files Browse the repository at this point in the history
  • Loading branch information
hdavid03 committed Sep 26, 2023
1 parent 9936237 commit 359745f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions analogic/authentication_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ def _get_server_side_mdx(self, force_server_side_query=False):
if request.args.get('server') is not None or force_server_side_query is True:
if request.method == 'GET':
body = request.args
elif len(request.form) > 0:
body = request.form.to_dict()
else:
body = orjson.loads(request.data)
key = body['key']
Expand Down

0 comments on commit 359745f

Please sign in to comment.