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)
|
senders = App.Utils.parseAddressListLocal(article.from)
|
||||||
if senders
|
if senders
|
||||||
for sender in senders
|
for sender in senders
|
||||||
if sender && sender.address && sender.address.match('@')
|
if sender && sender.match('@')
|
||||||
senderIsLocal = isLocalAddress(sender.address)
|
senderIsLocal = isLocalAddress(sender)
|
||||||
|
|
||||||
# check if article recipient is local
|
# check if article recipient is local
|
||||||
recipientIsLocal = false
|
recipientIsLocal = false
|
||||||
|
|
Loading…
Reference in a new issue