Skip to content

Commit 8493e1b

Browse files
authored
Fix redirect handler (#6941)
1 parent 77f87de commit 8493e1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebook/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class RedirectHandler(NotebookBaseHandler):
117117
@web.authenticated
118118
def get(self):
119119
"""Get the redirect url."""
120-
return self.redirect(self.base_url.strip("/") + "/" + self.default_url.strip("/"))
120+
return self.redirect(self.base_url + "tree")
121121

122122

123123
class TreeHandler(NotebookBaseHandler):

0 commit comments

Comments
 (0)