Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: make compatible with omniauth-oauth2 >= 1.4.0 #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/omniauth/strategies/dropbox_oauth2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,12 @@ def raw_info
# @raw_info ||= MultiJson.decode(access_token.get('/2/users/get_current_account').body)
end

# Fixes regression in omniauth-oauth2 v1.4.0 by https://github.com/omniauth/omniauth-oauth2/commit/85fdbe117c2a4400d001a6368cc359d88f40abc7
def callback_url
if @authorization_code_from_signed_request
''
else
options[:callback_url] || super
options[:callback_url] || (full_host + script_name + callback_path)
end
end
end
Expand Down