Disabled custom tabs for OAuth

master
M66B 2 months ago
parent 62b7ad35c1
commit 860793c719

@ -405,7 +405,7 @@ public class FragmentOAuth extends FragmentBase {
EmailProvider.OAuth oauth = (graph ? provider.graph : provider.oauth);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean oauth_tabs = prefs.getBoolean("oauth_tabs", true);
boolean oauth_tabs = prefs.getBoolean("oauth_tabs", false);
AppAuthConfiguration.Builder appAuthConfig = new AppAuthConfiguration.Builder();

@ -2602,7 +2602,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
sbSqliteCache.setProgress(sqlite_cache);
swCacheLists.setChecked(prefs.getBoolean("cache_lists", true));
swOauthTabs.setChecked(prefs.getBoolean("oauth_tabs", true));
swOauthTabs.setChecked(prefs.getBoolean("oauth_tabs", false));
int start_delay = prefs.getInt("start_delay", 0);
tvStartDelay.setText(getString(R.string.title_advanced_start_delay, start_delay));

Loading…
Cancel
Save