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.
This commit is contained in:
Jasper St. Pierre 2013-11-02 17:55:48 -04:00
parent 280203158c
commit 8bd7003ea7

View File

@ -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