mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-12 12:33:02 +00:00
tilde is a safe character in user URLs
Chrome unconditionally reverts any not-strictly-necessary escaping in URLs (this seems wrong?)
This commit is contained in:
@@ -282,7 +282,7 @@ class User:
|
||||
@property
|
||||
def escaped_name(self):
|
||||
"""My name, escaped for use in URLs, cookies, etc."""
|
||||
return quote(self.name, safe='@')
|
||||
return quote(self.name, safe='@~')
|
||||
|
||||
@property
|
||||
def proxy_spec(self):
|
||||
|
Reference in New Issue
Block a user