Bug 1479726 - Use correct filterXUL property for nsIFilePicker in FilePicker.js. r=snorp

MozReview-Commit-ID: A3G98cC8T4F

Differential Revision: https://phabricator.services.mozilla.com/D2781

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Mark Banner 2018-08-10 15:41:41 +00:00
Родитель 2831895ffc
Коммит a6ac6f001a
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -72,11 +72,8 @@ FilePicker.prototype = {
this.appendFilter("*.xml");
}
if (aFilterMask & Ci.nsIFilePicker.xulFilter) {
if (aFilterMask & Ci.nsIFilePicker.filterXUL) {
this.appendFilter("*.xul");
}
if (aFilterMask & Ci.nsIFilePicker.xulFilter) {
this.appendFilter("..apps");
}
},