There was an error while loading. Please reload this page.
1 parent 68887af commit 2280e04Copy full SHA for 2280e04
image/usr/local/lib/web/backend/vnc/app.py
@@ -47,8 +47,8 @@ def apihealth():
47
def reset():
48
if 'w' in request.args and 'h' in request.args:
49
args = {
50
- 'w': request.args.get('w'),
51
- 'h': request.args.get('h'),
+ 'w': int(request.args.get('w')),
+ 'h': int(request.args.get('h')),
52
}
53
state.set_size(args['w'], args['h'])
54
0 commit comments