From 09fa5d98c2aef0ddfcb1de22e7ff8eee97f84908 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 7 Sep 2011 19:16:01 +0200 Subject: [PATCH] network-agent: Add missing parameter _getMobileSecrets() expects the connection type to be passed, so do that. https://bugzilla.gnome.org/show_bug.cgi?id=658492 --- js/ui/networkAgent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/networkAgent.js b/js/ui/networkAgent.js index c8664cf9b..90480e7c2 100644 --- a/js/ui/networkAgent.js +++ b/js/ui/networkAgent.js @@ -360,7 +360,7 @@ NetworkSecretDialog.prototype = { case 'bluetooth': content.title = _("Mobile broadband network password"); content.message = _("A password is required to connect to '%s'.").format(connectionSetting.get_id()); - this._getMobileSecrets(content.secrets); + this._getMobileSecrets(content.secrets, connectionType); break; default: log('Invalid connection type: ' + connectionType);