Prevent browsers from caching images with same filenames from different directories

pull/5/head
mandlm 2018-11-10 16:36:14 +01:00
parent bc0ee53d88
commit 0a3dd01f1a
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ def random_image():
images = list(imgdir.glob(img_glob))
selected_image = choice(images).relative_to(imgdir)
return redirect(url_for("image", filename=selected_image))
return redirect(url_for("image", filename=selected_image) + "?hash=%s" % get_cache_filename(selected_image))
@app.route("/img/<path:filename>")