Fixed array concat.
This commit is contained in:
parent
98d9596084
commit
af4e744e73
1 changed files with 3 additions and 3 deletions
|
@ -81,15 +81,15 @@ class App.TicketZoomArticleActions extends App.Controller
|
|||
if article.from
|
||||
localRecipients = emailAddresses.parseAddressList(article.from)
|
||||
if localRecipients
|
||||
recipients.push recipients.concat localRecipients
|
||||
recipients = recipients.concat localRecipients
|
||||
if article.to
|
||||
localRecipients = emailAddresses.parseAddressList(article.to)
|
||||
if localRecipients
|
||||
recipients.push recipients.concat localRecipients
|
||||
recipients = recipients.concat localRecipients
|
||||
if article.cc
|
||||
localRecipients = emailAddresses.parseAddressList(article.cc)
|
||||
if localRecipients
|
||||
recipients.push recipients.concat localRecipients
|
||||
recipients = recipients.concat localRecipients
|
||||
if recipients.length > 1
|
||||
actions.push {
|
||||
name: 'reply all'
|
||||
|
|
Loading…
Reference in a new issue