mirror of https://github.com/CIRCL/lookyloo
fix: avoid exceptions when the width of the thumbnail is not an int
parent
19fae16c9c
commit
ff4faa8ec1
|
@ -535,7 +535,7 @@ def redirects(tree_uuid: str):
|
||||||
@file_response
|
@file_response
|
||||||
def image(tree_uuid: str):
|
def image(tree_uuid: str):
|
||||||
max_width = request.args.get('width')
|
max_width = request.args.get('width')
|
||||||
if max_width:
|
if max_width and max_width.isdigit():
|
||||||
to_return = lookyloo.get_screenshot_thumbnail(tree_uuid, width=int(max_width))
|
to_return = lookyloo.get_screenshot_thumbnail(tree_uuid, width=int(max_width))
|
||||||
else:
|
else:
|
||||||
to_return = lookyloo.get_screenshot(tree_uuid)
|
to_return = lookyloo.get_screenshot(tree_uuid)
|
||||||
|
|
Loading…
Reference in New Issue