Fix legacy CNET download link

pull/2/head
Noah 2016-04-27 19:32:52 +00:00
Parent 7edb2f21bc
révision 6bb370c7fd
1 fichiers modifiés avec 7 ajouts et 0 suppressions

Voir le fichier

@ -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")