diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-01 20:06:57 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-02-02 02:17:37 +0100 |
commit | a48dabbcba5d72cc76137984797383aecc704de8 (patch) | |
tree | c59e59bba698f7981b0b95ea8626510bf5ae3582 | |
parent | f0aaab86a1472c4efa5792c7893f6b2ed528fccf (diff) | |
download | uxp-a48dabbcba5d72cc76137984797383aecc704de8.tar.gz |
Issue #1377 - Fix porting typo in mailnews/base/search/content/searchWidgets.xml
MailNews Core being historically comm tended to avoid defining shorthand for Components.interfaces
-rw-r--r-- | mailnews/base/search/content/searchWidgets.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mailnews/base/search/content/searchWidgets.xml b/mailnews/base/search/content/searchWidgets.xml index 69f3b2ae23..1f39604429 100644 --- a/mailnews/base/search/content/searchWidgets.xml +++ b/mailnews/base/search/content/searchWidgets.xml @@ -224,7 +224,7 @@ let identitiesRaw = MailServices.accounts .getIdentitiesForServer(gFilterList.folder.server); let identities = Array.from(this.fixIterator(identitiesRaw, - Ci.nsIMsgIdentity)); + Components.interfaces.nsIMsgIdentity)); if (identities.length == 0) { // typically if this is Local Folders if (MailServices.accounts.defaultAccount) |