On my site, the following link does not work:
Grassroots Justice Network Community Discussions (private)
but this one does:
Profile - tobiaseigen - Grassroots Justice Network Community Discussions (private)
They should both link to the same place, just like /my/messages or /my/messages/sent links to /users/tobiaseigen/messages and /users/tobiaseigen/messages/sent
4 Likes
aryanraj
(Aryan Raj)
March 19, 2016, 11:04am
2
I think the reason mostly because of this line in users#my_redirect
raise Discourse::NotFound if params[:path] !~ /+$/
Underscore are not present in regex. So group names with underscore will not be redirected. Not sure why underscore is not added.
I would like to add PR unless there was some other reason for this.
Edit: Numbers are also present in the regex. Should it also be added?
2 Likes
Looks like you are right about the underscores. Other group inboxes work fine, e.g
Profile - tobiaseigen - Grassroots Justice Network Community Discussions
1 Like
aryanraj
(Aryan Raj)
March 20, 2016, 8:00am
4
5 Likes