From 8bd7003ea7ae9a04ef2fae9f014093bb8da84092 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sat, 2 Nov 2013 17:55:48 -0400 Subject: [PATCH] bluetooth: Parse pins starting with 0 correctly If we have a numeric PIN that starts with 0, it will be treated as an octal number rather than a number that just starts with 0. --- js/ui/status/bluetooth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/status/bluetooth.js b/js/ui/status/bluetooth.js index ce0aa0245..4b74b2396 100644 --- a/js/ui/status/bluetooth.js +++ b/js/ui/status/bluetooth.js @@ -228,7 +228,7 @@ const PinNotification = new Lang.Class({ _ok: function() { if (this._numeric) { - let num = parseInt(this._entry.text); + let num = parseInt(this._entry.text, 10); if (isNaN(num)) { // user reply was empty, or was invalid // cancel the operation