mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 11:47:30 +01:00
Disable caching for binary download (#3054)
This commit is contained in:
parent
2a8668ea60
commit
52d2f62a57
@ -445,6 +445,7 @@ class DownloadBinaryRequestHandler(BaseHandler):
|
||||
|
||||
self.set_header("Content-Type", "application/octet-stream")
|
||||
self.set_header("Content-Disposition", f'attachment; filename="{filename}"')
|
||||
self.set_header("Cache-Control", "no-cache")
|
||||
if not Path(path).is_file():
|
||||
self.send_error(404)
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user