Fixed use of new namespace for App.Utils.parseAddressListLocal().
This commit is contained in:
parent
d2d597b05c
commit
06404c74eb
1 changed files with 2 additions and 2 deletions
|
@ -964,8 +964,8 @@ class App.Utils
|
|||
senders = App.Utils.parseAddressListLocal(article.from)
|
||||
if senders
|
||||
for sender in senders
|
||||
if sender && sender.address && sender.address.match('@')
|
||||
senderIsLocal = isLocalAddress(sender.address)
|
||||
if sender && sender.match('@')
|
||||
senderIsLocal = isLocalAddress(sender)
|
||||
|
||||
# check if article recipient is local
|
||||
recipientIsLocal = false
|
||||
|
|
Loading…
Reference in a new issue