Skip to content

Commit

Permalink
Limit number of contacts for Android's "Quick Share"
Browse files Browse the repository at this point in the history
Work around a bug in Android which lead to very non recent contacts showing up in Android's "Quick Share" overlay. Also increase privacy by leaking less conversation names to the Android UI.

Fixes #13398
  • Loading branch information
genodeftest authored Sep 28, 2024
1 parent 69e1146 commit ff27ced
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public static void clearShortcuts(@NonNull Context context, @NonNull Collection<
}

public static int getMaxShortcuts(@NonNull Context context) {
return Math.min(ShortcutManagerCompat.getMaxShortcutCountPerActivity(context), 150);
return Math.min(ShortcutManagerCompat.getMaxShortcutCountPerActivity(context), 10);
}

/**
Expand Down

0 comments on commit ff27ced

Please sign in to comment.