Fix Cache Buster

This commit is contained in:
Ozzieisaacs 2022-05-22 12:49:00 +01:00
parent 4ea80e9810
commit 790080f2a0
1 changed files with 2 additions and 2 deletions

View File

@ -76,11 +76,11 @@ def init_cache_busting(app):
if file_hash:
values["q"] = file_hash
def debusting_static_view(file_name):
def debusting_static_view(filename):
"""
Serve a request for a static file having a busted name.
"""
return original_static_view(filename=unbust_filename(file_name))
return original_static_view(filename=unbust_filename(filename))
# Replace the default static file view with our debusting view.
original_static_view = app.view_functions["static"]