Fix legacy CNET download link

pull/2/head
Noah 2016-04-27 19:32:52 +00:00
parent 7edb2f21bc
commit 6bb370c7fd
1 changed files with 7 additions and 0 deletions

View File

@ -57,6 +57,13 @@ def legacy_download():
if request.method == "POST":
form = request.form
else:
# CNET links to the MS-DOS download using semicolon delimiters in the
# query string. Fix that if detected.
query = request.query_string.decode()
if not '&' in query and ';' in query:
url = re.sub(r';|%3b', '&', request.url, flags=re.IGNORECASE)
return redirect(url)
form = request.args
method = form.get("method", "index")