Skip to content

Commit

Permalink
feat: Incognito Download Support
Browse files Browse the repository at this point in the history
  • Loading branch information
RossWang committed Jan 19, 2018
1 parent 967cd97 commit 1bc9483
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions App/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,15 @@ function save(url, fileName, filePath, header, as, wid, incog) {
var downloading = browser.downloads.download({
//conflictAction: "prompt", //not work
filename: fileName,
//incognito: incog, //not work
incognito: incog, //not work under 57
saveAs: as,
url: url,
});
}
else {
var downloading = browser.downloads.download({
//conflictAction: "prompt", //not work
//incognito: incog, //not work
incognito: incog, //not work under 57
saveAs: as,
url: url,
});
Expand Down

0 comments on commit 1bc9483

Please sign in to comment.