diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-01 20:06:57 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:21:51 +0200 |
commit | 7e4efa4e1f9d1569edcaed7440fbbfe831236c8d (patch) | |
tree | 61639ccc49e4613f2d9011f26703053ca3de04e5 /mailnews | |
parent | 84b5515a8d35b80723fc8881dd116982ef9cf992 (diff) | |
download | uxp-7e4efa4e1f9d1569edcaed7440fbbfe831236c8d.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
Diffstat (limited to 'mailnews')
-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) |