diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2024-06-30 21:57:33 +1000 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2024-06-30 21:57:33 +1000 |
commit | a3bdaf37b72013fe581f108c4798137e1ea267cd (patch) | |
tree | 5200d85e5b923499a7c93ba5e4278613f3c053cf /http-cache.tcl | |
parent | d5cc926ec6c3020d2d51cacc7d14e59c558c4167 (diff) |
Diffstat (limited to 'http-cache.tcl')
-rwxr-xr-x | http-cache.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/http-cache.tcl b/http-cache.tcl index 25e5f0d..f377770 100755 --- a/http-cache.tcl +++ b/http-cache.tcl @@ -27,9 +27,9 @@ namespace eval cache { } } - #TODO: Pre-cache all precache files. - foreach i $precache { - add [string cat $::http::root $i] + # Process the precache + foreach i $::http::configure::precache { + add [string cat $::http::configure::srv $i] } } |