mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-02 13:27:55 +08:00
fix(drafts): fix illegal ID set
Fixes T3468
This commit is contained in:
parent
2c638afd30
commit
a13d72886a
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ class Participants extends React.Component
|
||||||
list = _.reject list, (contact) -> contact.isMe()
|
list = _.reject list, (contact) -> contact.isMe()
|
||||||
|
|
||||||
list.forEach (p) ->
|
list.forEach (p) ->
|
||||||
p.id = p.name+p.email
|
p.serverId ?= p.name+p.email
|
||||||
|
|
||||||
list
|
list
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue