thunderbolt: fix missing variable underscore for enrolling
The variable `this.enrolling` is a typo because it has not been defined before and is also never used. `this._enrolling` is what it was meant to be.
This commit is contained in:
parent
e5ce3d541e
commit
616852cf2b
@ -195,7 +195,7 @@ var AuthRobot = new Lang.Class({
|
||||
if (this._enrolling)
|
||||
return;
|
||||
|
||||
this.enrolling = true;
|
||||
this._enrolling = true;
|
||||
GLib.idle_add(GLib.PRIORITY_DEFAULT,
|
||||
this._enrollDevicesIdle.bind(this));
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user