append jpg if there isnt one for single image

This commit is contained in:
Kevin F 2021-10-03 23:18:54 +00:00
parent 0e302a65b5
commit 198ba69026
1 changed files with 3 additions and 3 deletions

View File

@ -59,9 +59,9 @@ def gallery(id=''):
@route('/<img>')
def hello(img=''):
if img.endswith("jpeg") and not img.endswith("jpg") and not img.endswith("png"):
img += ".jpg"
def img(img=''):
if not img.endswith("jpeg") and not img.endswith("jpg") and not img.endswith("png"):
img = img + ".jpg"
if not path.exists(IMAGE_CACHE + img):
get(img, IMAGE_CACHE)
return static_file(img, root=IMAGE_CACHE)