mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
FIX: Redirect to /login-preferences didn't work for subfolders
This commit is contained in:
parent
895d5cb592
commit
86186de1e3
1 changed files with 2 additions and 2 deletions
|
@ -238,8 +238,8 @@ class UsersController < ApplicationController
|
|||
raise Discourse::NotFound if params[:path] !~ /^[a-z_\-\/]+$/
|
||||
|
||||
if current_user.blank?
|
||||
cookies[:destination_url] = "/my/#{params[:path]}"
|
||||
redirect_to "/login-preferences"
|
||||
cookies[:destination_url] = path("/my/#{params[:path]}")
|
||||
redirect_to path("/login-preferences")
|
||||
else
|
||||
redirect_to(path("/u/#{current_user.username}/#{params[:path]}"))
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue