diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-08 21:32:29 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-08 21:32:29 -0500 |
commit | 382c3272f342d08be5938d01ff1d11506a0053a3 (patch) | |
tree | 15ac30db0cacf79c0c7a3cffcc79a7b2a2a7da78 | |
parent | bb828464e868b7571548f17ec3eaebd26f5078a2 (diff) | |
download | UXP-382c3272f342d08be5938d01ff1d11506a0053a3.tar UXP-382c3272f342d08be5938d01ff1d11506a0053a3.tar.gz UXP-382c3272f342d08be5938d01ff1d11506a0053a3.tar.lz UXP-382c3272f342d08be5938d01ff1d11506a0053a3.tar.xz UXP-382c3272f342d08be5938d01ff1d11506a0053a3.zip |
Fix wrong keyword in toolkit/components/jsdownloads/DownloadIntegration.jsm
-rw-r--r-- | toolkit/components/jsdownloads/src/DownloadIntegration.jsm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/components/jsdownloads/src/DownloadIntegration.jsm b/toolkit/components/jsdownloads/src/DownloadIntegration.jsm index 1d289c24d..1c30599f5 100644 --- a/toolkit/components/jsdownloads/src/DownloadIntegration.jsm +++ b/toolkit/components/jsdownloads/src/DownloadIntegration.jsm @@ -697,7 +697,7 @@ this.DownloadIntegration = { // to do this check. The second is that the system-level security prompt // would be displayed at launch time in any case. if (file.isExecutable() && !isWindowsExe && - !(await this.confirmLaunchExecutable(file.path))) { + !(yield this.confirmLaunchExecutable(file.path))) { return; } |