Disable app chooser by default

This commit is contained in:
M66B
2023-08-23 11:03:53 +02:00
parent 56c470f03f
commit ed97b03511
2 changed files with 2 additions and 2 deletions

View File

@@ -942,7 +942,7 @@ public class Helper {
static Intent getChooser(Context context, Intent intent) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean app_chooser = prefs.getBoolean("app_chooser", true);
boolean app_chooser = prefs.getBoolean("app_chooser", false);
if (!app_chooser)
return intent;