change default of chrome custom tabs setting to false

This commit is contained in:
Conny Duck 2017-10-30 10:48:27 +01:00
commit 2d390f6603
4 changed files with 4 additions and 5 deletions

View file

@ -132,7 +132,7 @@ public class LinkHelper {
Uri uri = Uri.parse(url);
boolean useCustomTabs = PreferenceManager.getDefaultSharedPreferences(context)
.getBoolean("customTabs", true);
.getBoolean("customTabs", false);
if (useCustomTabs) {
openLinkInCustomTab(uri, context);
} else {