Use hashed email/name for shortcut ID

pull/202/head
M66B 3 years ago
parent 7cb2635594
commit 176aa6d24b

@ -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)

Loading…
Cancel
Save