mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-15 06:05:58 -06:00
update requirements + fix werkzeug compatibility issue
This commit is contained in:
parent
180730f3a4
commit
1e8e480967
2 changed files with 7 additions and 5 deletions
|
|
@ -199,10 +199,12 @@ class PrefsUI(Resource):
|
|||
sess = session._get_current_object()
|
||||
ret = {}
|
||||
req = MultiDict()
|
||||
for loc in ["values", "json"]:
|
||||
data = getattr(request, loc, None)
|
||||
if data:
|
||||
req.update(data)
|
||||
data = getattr(request, "values", None)
|
||||
if data:
|
||||
req.update(data)
|
||||
data = request.get_json(silent=True)
|
||||
if data:
|
||||
req.update(data)
|
||||
for key in args.keys():
|
||||
if key not in req:
|
||||
continue
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
trio==0.19.0
|
||||
Flask==2.0.3
|
||||
Flask-Login==0.5.0
|
||||
Flask-Login==0.6.2
|
||||
Flask-Babel==2.0.0
|
||||
Flask-WTF==0.15.1
|
||||
flask-restx==1.0.3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue