🥅 catch thumbnail out of bounds
This commit is contained in:
parent
db5e09d9a5
commit
0c4f8130f6
|
@ -46,7 +46,12 @@ class ThumbnailView:
|
||||||
body = temp.getvalue()
|
body = temp.getvalue()
|
||||||
else:
|
else:
|
||||||
thumb_pos = int(len(thumbnails) / 2)
|
thumb_pos = int(len(thumbnails) / 2)
|
||||||
thumbnail = self.client._get_thumb(thumbnails, thumb_pos)
|
try:
|
||||||
|
thumbnail = self.client._get_thumb(thumbnails, thumb_pos)
|
||||||
|
except Exception as e:
|
||||||
|
logging.debug(e)
|
||||||
|
thumbnail = None
|
||||||
|
|
||||||
if not thumbnail or isinstance(thumbnail, types.PhotoSizeEmpty):
|
if not thumbnail or isinstance(thumbnail, types.PhotoSizeEmpty):
|
||||||
return web.Response(
|
return web.Response(
|
||||||
status=410,
|
status=410,
|
||||||
|
|
Loading…
Reference in New Issue