From 01dd96d178c42dd799f047d187b4764263bb30c6 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Tue, 19 Mar 2019 18:57:57 +0000 Subject: [PATCH] FIX: Use default frame size for Instagram login I don't know why this was set to 1x1 pixels, but it shouldn't have been --- lib/discourse.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/discourse.rb b/lib/discourse.rb index eeb8d2a01b8..f6d30ca5ce3 100644 --- a/lib/discourse.rb +++ b/lib/discourse.rb @@ -220,7 +220,7 @@ module Discourse Auth::AuthProvider.new(authenticator: Auth::OpenIdAuthenticator.new("yahoo", "https://me.yahoo.com", 'enable_yahoo_logins', trusted: true)), Auth::AuthProvider.new(authenticator: Auth::GithubAuthenticator.new), Auth::AuthProvider.new(authenticator: Auth::TwitterAuthenticator.new), - Auth::AuthProvider.new(authenticator: Auth::InstagramAuthenticator.new, frame_width: 1, frame_height: 1) + Auth::AuthProvider.new(authenticator: Auth::InstagramAuthenticator.new) ] def self.auth_providers