Fix FileNotFoundError on missing thumbnail source

This commit is contained in:
rubenwardy 2020-06-25 14:58:09 +01:00
parent 2cfb59d042
commit ecb3d83c57
1 changed files with 5 additions and 2 deletions

View File

@ -15,7 +15,7 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from flask import *
from flask import abort, send_file, Blueprint, current_app
bp = Blueprint("thumbnails", __name__)
@ -31,7 +31,10 @@ def mkdir(path):
def resize_and_crop(img_path, modified_path, size):
img = Image.open(img_path)
try:
img = Image.open(img_path)
except FileNotFoundError:
abort(404)
# Get current and desired ratio for the images
img_ratio = img.size[0] / float(img.size[1])