From 59a70fbc63649af4b1bae39c52269818de75d29a Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Sun, 16 Jul 2017 21:24:30 +0200 Subject: [PATCH] polkitAgent: Fix ReferenceError exception Introduced in commit 593b4318a. The "message" variable was renamed everywhere, except where it's defined. --- js/ui/components/polkitAgent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/components/polkitAgent.js b/js/ui/components/polkitAgent.js index 9ab843323..cfa535504 100644 --- a/js/ui/components/polkitAgent.js +++ b/js/ui/components/polkitAgent.js @@ -31,7 +31,7 @@ const AuthenticationDialog = new Lang.Class({ Name: 'AuthenticationDialog', Extends: ModalDialog.ModalDialog, - _init: function(actionId, message, cookie, userNames) { + _init: function(actionId, body, cookie, userNames) { this.parent({ styleClass: 'prompt-dialog' }); this.actionId = actionId;