X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/6c9978c5bf8b1ef20871557c22b8b02df647d700..68859fcc7e562dd9caa01ca1896bee8c76359e13:/catalogue/publish.py diff --git a/catalogue/publish.py b/catalogue/publish.py index 89c76a1..bc2e37a 100755 --- a/catalogue/publish.py +++ b/catalogue/publish.py @@ -40,7 +40,11 @@ def get_image(src_img_path, width=None, default_width=1600, formats=('PNG', 'JPE if convert: if width is None: width = default_width - return get_thumbnail(src_img_path, '%sx%s' % (width, 10*width)) + try: + return get_thumbnail(src_img_path, '%sx%s' % (width, 10*width)) + except: + # hard to predict what solr raises on invalid image + return None else: return None