Use hashed email/name for shortcut ID

This commit is contained in:
M66B 2021-08-06 10:08:52 +02:00
parent 7cb2635594
commit 176aa6d24b
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ class Shortcuts {
circular && !identicon ? null : Helper.dp2pixels(context, 3));
IconCompat icon = IconCompat.createWithBitmap(bitmap);
String id = (name == null ? email : "\"" + name + "\" <" + email + ">");
String id = Integer.toHexString(Objects.hash(name, email));
Set<String> categories = new HashSet<>(Arrays.asList(BuildConfig.APPLICATION_ID + ".TEXT_SHARE_TARGET"));
ShortcutInfoCompat.Builder builder = new ShortcutInfoCompat.Builder(context, id)
.setIcon(icon)