Change URL from nsis to easyinstall

This commit is contained in:
idk
2021-09-16 20:03:16 -04:00
parent ee3285e830
commit d8e5d4bb22
5 changed files with 5 additions and 5 deletions

View File

@ -90,13 +90,13 @@ def downloads_windows():
return render_template('downloads/windows.html')
# AIO-Windows-specific page
def downloads_nsis():
def downloads_easyinstall():
# TODO: read mirror list or list of available files
if request.headers.get('X-I2P-Desthash') and not request.headers.get('X-Forwarded-Server'):
def_mirror = DEFAULT_I2P_MIRROR
else:
def_mirror = DEFAULT_MIRROR
return render_template('downloads/nsis.html', def_mirror=def_mirror)
return render_template('downloads/easyinstall.html', def_mirror=def_mirror)
# Docker-specific page
def downloads_docker():