mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 09:07:48 +01:00
fix issue where scope would be missing the * if the user was not logged in before calling the authorize endpoint
fix #4200
This commit is contained in:
parent
97c4165f55
commit
0917efd9cb
1 changed files with 1 additions and 1 deletions
|
@ -262,7 +262,7 @@ def get_referer(env, fallback = "/", unroll = true)
|
|||
end
|
||||
|
||||
referer = referer.request_target
|
||||
referer = "/" + referer.gsub(/[^\/?@&%=\-_.:,0-9a-zA-Z]/, "").lstrip("/\\")
|
||||
referer = "/" + referer.gsub(/[^\/?@&%=\-_.:,*0-9a-zA-Z]/, "").lstrip("/\\")
|
||||
|
||||
if referer == env.request.path
|
||||
referer = fallback
|
||||
|
|
Loading…
Reference in a new issue