diff options
Diffstat (limited to 'toolkit/components/jsdownloads/src/DownloadIntegration.jsm')
-rw-r--r-- | toolkit/components/jsdownloads/src/DownloadIntegration.jsm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/toolkit/components/jsdownloads/src/DownloadIntegration.jsm b/toolkit/components/jsdownloads/src/DownloadIntegration.jsm index 7e9a6348f..2ed769371 100644 --- a/toolkit/components/jsdownloads/src/DownloadIntegration.jsm +++ b/toolkit/components/jsdownloads/src/DownloadIntegration.jsm @@ -457,13 +457,7 @@ this.DownloadIntegration = { #elifdef MOZ_WIDGET_GONK directoryPath = yield this.getSystemDownloadsDirectory(); #else - // For Metro mode on Windows 8, we want searchability for documents - // that the user chose to open with an external application. - if (Services.metro && Services.metro.immersive) { - directoryPath = yield this.getSystemDownloadsDirectory(); - } else { - directoryPath = this._getDirectory("TmpD"); - } + directoryPath = this._getDirectory("TmpD"); #endif throw new Task.Result(directoryPath); }.bind(this)); |