diff options
Diffstat (limited to 'chrome/code/settings.xul.js')
-rw-r--r-- | chrome/code/settings.xul.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/code/settings.xul.js b/chrome/code/settings.xul.js index c7f780a..bee7817 100644 --- a/chrome/code/settings.xul.js +++ b/chrome/code/settings.xul.js @@ -217,12 +217,12 @@ var Settings = { //Mostly borrowed from Adblock Plus var picker = Cc["@mozilla.org/filepicker;1"].createInstance(Ci.nsIFilePicker); picker.init(window, this.strings.getString(captionKey), mode); - picker.defaultExtension = ".rdx"; + picker.defaultExtension = ".rjson"; var dir = this.prefs.defaultDir; if (dir) { picker.displayDirectory = new nsLocalFile(dir); } - picker.appendFilter(this.strings.getString('redirectorFiles'), '*.rdx'); + picker.appendFilter(this.strings.getString('redirectorFiles'), '*.rjson'); if (picker.show() == picker.returnCancel) { return null; |