Fix: the Chinese URI

This commit is contained in:
howie6879 2018-01-07 12:07:18 +08:00
parent e34de96b24
commit 7303a06f83

View File

@ -374,7 +374,7 @@ class Router:
:param method: request method
:return: handler, arguments, keyword arguments
"""
# url = unquote(url)
url = unquote(url)
url = host + url
# Check against known static routes
route = self.routes_static.get(url)