Skip to content

Commit

Permalink
Really remove text QRCode being returned (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollon77 authored Nov 3, 2023
1 parent d084268 commit 8869804
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/matter.js/src/CommissioningServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ import {
ManualPairingCodeCodec,
QrPairingCodeCodec,
} from "./schema/PairingCodeSchema.js";
import { QrCode } from "./schema/QrCodeSchema.js";
import { PaseClient } from "./session/pase/PaseClient.js";
import { MatterCoreSpecificationV1_1 } from "./spec/Specifications.js";
import { StorageContext } from "./storage/StorageContext.js";
Expand All @@ -91,7 +90,6 @@ const MATTER_DATAMODEL_VERSION = 16;
export interface DevicePairingInformation {
manualPairingCode: string;
qrPairingCode: string;
qrCode: string;
}

/**
Expand Down Expand Up @@ -797,7 +795,6 @@ export class CommissioningServer extends MatterNode {
passcode: this.passcode,
}),
qrPairingCode,
qrCode: QrCode.encode(qrPairingCode), // TODO: Really export that always?
};
}

Expand Down

0 comments on commit 8869804

Please sign in to comment.