From ecb6a6528ab4313cecdca2399ced405d6117d16b Mon Sep 17 00:00:00 2001 From: NTD Date: Thu, 8 Feb 2018 21:32:29 -0500 Subject: [PATCH] Fix wrong keyword in toolkit/components/jsdownloads/DownloadIntegration.jsm --- toolkit/components/jsdownloads/src/DownloadIntegration.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/components/jsdownloads/src/DownloadIntegration.jsm b/toolkit/components/jsdownloads/src/DownloadIntegration.jsm index 1d289c24da..1c30599f5a 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; }