Do not merge zoom/lat/lon options with oauth_return_url
This commit is contained in:
parent
1fbd1d11c4
commit
aeb4271a27
1 changed files with 3 additions and 6 deletions
|
@ -311,20 +311,17 @@ class UsersController < ApplicationController
|
||||||
|
|
||||||
def welcome_options
|
def welcome_options
|
||||||
uri = URI(session[:referer]) if session[:referer].present?
|
uri = URI(session[:referer]) if session[:referer].present?
|
||||||
welcome_options = {}
|
|
||||||
welcome_options["oauth_return_url"] = uri&.to_s if uri&.path == oauth_authorization_path
|
return { "oauth_return_url" => uri&.to_s } if uri&.path == oauth_authorization_path
|
||||||
|
|
||||||
begin
|
begin
|
||||||
%r{map=(.*)/(.*)/(.*)}.match(uri.fragment) do |m|
|
%r{map=(.*)/(.*)/(.*)}.match(uri.fragment) do |m|
|
||||||
editor = Rack::Utils.parse_query(uri.query).slice("editor")
|
editor = Rack::Utils.parse_query(uri.query).slice("editor")
|
||||||
welcome_options = { "zoom" => m[1],
|
return { "zoom" => m[1], "lat" => m[2], "lon" => m[3] }.merge(editor)
|
||||||
"lat" => m[2],
|
|
||||||
"lon" => m[3] }.merge(editor).merge(welcome_options)
|
|
||||||
end
|
end
|
||||||
rescue StandardError
|
rescue StandardError
|
||||||
# Use default
|
# Use default
|
||||||
end
|
end
|
||||||
welcome_options
|
|
||||||
end
|
end
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
Loading…
Add table
Reference in a new issue