diff --git a/src/matrix/e2ee/DeviceTracker.ts b/src/matrix/e2ee/DeviceTracker.ts index 914c60f5..995b8ade 100644 --- a/src/matrix/e2ee/DeviceTracker.ts +++ b/src/matrix/e2ee/DeviceTracker.ts @@ -677,6 +677,10 @@ export class DeviceTracker { async getDeviceByCurve25519Key(curve25519Key, txn: Transaction): Promise { return await txn.deviceKeys.getByCurve25519Key(curve25519Key); } + + get ownDeviceId(): string { + return this._ownDeviceId; + } } import {createMockStorage} from "../../mocks/Storage";