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

@ -143,7 +143,7 @@ class StatusBaseViewHolder extends RecyclerView.ViewHolder {
/* Redirect URLSpan's in the status content to the listener for viewing tag pages and
* account pages. */
boolean useCustomTabs =
PreferenceManager.getDefaultSharedPreferences(context).getBoolean("customTabs", true);
PreferenceManager.getDefaultSharedPreferences(context).getBoolean("customTabs", false);
LinkHelper.setClickableText(this.content, builder, mentions, useCustomTabs, listener);
}