mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
fix(SFDC): fix bug where opening new file would cause attachments to fail
This commit is contained in:
parent
19c91829a4
commit
6a828a099f
1 changed files with 2 additions and 2 deletions
|
@ -585,8 +585,8 @@ Utils =
|
|||
for commaPath in commaPaths
|
||||
joinedVals = []
|
||||
paths = commaPath.split("+")
|
||||
for path in paths
|
||||
parts = path.split(".")
|
||||
for filePath in paths
|
||||
parts = filePath.split(".")
|
||||
curVal = model
|
||||
for part in parts
|
||||
if _.isFunction(curVal[part])
|
||||
|
|
Loading…
Reference in a new issue