Another fixe for https://bugzilla.mozilla.org/show_bug.cgi?id=794602
This commit is contained in:
parent
f339e08894
commit
1dd67fe837
1 changed files with 9 additions and 1 deletions
|
@ -354,6 +354,8 @@ Zotero.Attachments = new function(){
|
|||
try {
|
||||
wbp.saveURI(nsIURL, null, null, null, null, file);
|
||||
} catch(e if e.name === "NS_ERROR_XPC_NOT_ENOUGH_ARGS") {
|
||||
// https://bugzilla.mozilla.org/show_bug.cgi?id=794602
|
||||
// XXX Always use when we no longer support Firefox < 18
|
||||
wbp.saveURI(nsIURL, null, null, null, null, file, null);
|
||||
}
|
||||
|
||||
|
@ -626,7 +628,13 @@ Zotero.Attachments = new function(){
|
|||
throw (e);
|
||||
}
|
||||
});
|
||||
wbp.saveURI(nsIURL, null, null, null, null, file);
|
||||
try {
|
||||
wbp.saveURI(nsIURL, null, null, null, null, file);
|
||||
} catch(e if e.name === "NS_ERROR_XPC_NOT_ENOUGH_ARGS") {
|
||||
// https://bugzilla.mozilla.org/show_bug.cgi?id=794602
|
||||
// XXX Always use when we no longer support Firefox < 18
|
||||
wbp.saveURI(nsIURL, null, null, null, null, file, null);
|
||||
}
|
||||
}
|
||||
|
||||
// Add to collections
|
||||
|
|
Loading…
Reference in a new issue