We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3832c01 commit e3b271fCopy full SHA for e3b271f
1 file changed
src/pairing.js
@@ -196,6 +196,7 @@ export class PairingWizard extends EventEmitter {
196
}
197
198
var credentials = {
199
+ uuid: this._uuid,
200
userId: pairingData.userId,
201
pairId: pairingData.pairId,
202
pairToken: pairingData.pairToken,
@@ -208,11 +209,7 @@ export class PairingWizard extends EventEmitter {
208
209
this._paired = true;
210
this._pairingResult = credentials;
211
- this.emit('paired', {
212
- userId: credentials.userId,
213
- pairToken: credentials.pairToken,
214
- children: credentials.children,
215
- });
+ this.emit('paired', credentials);
216
217
// Auto-terminate the wizard after successful pairing
218
await this.stop();
0 commit comments