mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-04 16:16:33 +02:00
Use hashed email/name for shortcut ID
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user