diff --git a/app/dashboard/views.py b/app/dashboard/views.py index d6197bd6528..7feda6205b4 100644 --- a/app/dashboard/views.py +++ b/app/dashboard/views.py @@ -1005,6 +1005,8 @@ def profile(request, handle): handle = request.user.username profile = request.user.profile else: + if handle.endswith('/'): + handle = handle[:-1] profile = profile_helper(handle) except Http404: show_hidden_profile = True