mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 18:59:01 +00:00
Use hashed email/name for shortcut ID
This commit is contained in:
parent
7cb2635594
commit
176aa6d24b
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ class Shortcuts {
|
||||||
circular && !identicon ? null : Helper.dp2pixels(context, 3));
|
circular && !identicon ? null : Helper.dp2pixels(context, 3));
|
||||||
|
|
||||||
IconCompat icon = IconCompat.createWithBitmap(bitmap);
|
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"));
|
Set<String> categories = new HashSet<>(Arrays.asList(BuildConfig.APPLICATION_ID + ".TEXT_SHARE_TARGET"));
|
||||||
ShortcutInfoCompat.Builder builder = new ShortcutInfoCompat.Builder(context, id)
|
ShortcutInfoCompat.Builder builder = new ShortcutInfoCompat.Builder(context, id)
|
||||||
.setIcon(icon)
|
.setIcon(icon)
|
||||||
|
|
Loading…
Reference in a new issue