diff options
Diffstat (limited to 'www')
| -rw-r--r-- | www/index.html.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/index.html.in b/www/index.html.in index 8d1efeb..80804ba 100644 --- a/www/index.html.in +++ b/www/index.html.in @@ -71,8 +71,10 @@ pre { <script> function get_version(arch) { - return fetch('dists/@DISTRIB@/main/binary-' + arch + '/Packages') - .then(response => { + return fetch( + 'dists/trixie/main/binary-' + arch + '/Packages', + {cache: "reload"} + ).then(response => { return response.text(); }) .then(content => { |
