Removed extraneous privilege call

print-window-tiddler
Jeremy Ruston 2012-09-01 16:41:13 +01:00
rodzic 0d4ea62ef8
commit 6a0998059e
2 zmienionych plików z 0 dodań i 2 usunięć

Wyświetl plik

@ -64,14 +64,12 @@ var TiddlyFox = {
saveFile: function(filePath,content) {
// Attempt to convert the filepath to a proper UTF-8 string
try {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
var converter = Components.classes["@mozilla.org/intl/utf8converterservice;1"].getService(Components.interfaces.nsIUTF8ConverterService);
filePath = converter.convertURISpecToUTF8(filePath,"UTF-8");
} catch(ex) {
}
// Save the file
try {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
var file = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
file.initWithPath(filePath);
if(!file.exists())

Plik binarny nie jest wyświetlany.