forked from mystiq/hydrogen-web
fix name conflict with _sessionInfo in parent class
This commit is contained in:
parent
a536ea7742
commit
8a39c16a38
1 changed files with 5 additions and 5 deletions
|
@ -95,20 +95,20 @@ class DeviceMessageRoomKey extends BaseRoomKey {
|
||||||
}
|
}
|
||||||
|
|
||||||
class BackupRoomKey extends BaseRoomKey {
|
class BackupRoomKey extends BaseRoomKey {
|
||||||
constructor(roomId, sessionId, sessionInfo) {
|
constructor(roomId, sessionId, backupInfo) {
|
||||||
super();
|
super();
|
||||||
this._roomId = roomId;
|
this._roomId = roomId;
|
||||||
this._sessionId = sessionId;
|
this._sessionId = sessionId;
|
||||||
this._sessionInfo = sessionInfo;
|
this._backupInfo = backupInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
get roomId() { return this._roomId; }
|
get roomId() { return this._roomId; }
|
||||||
get senderKey() { return this._sessionInfo["sender_key"]; }
|
get senderKey() { return this._backupInfo["sender_key"]; }
|
||||||
get sessionId() { return this._sessionId; }
|
get sessionId() { return this._sessionId; }
|
||||||
get claimedEd25519Key() { return this._sessionInfo["sender_claimed_keys"]?.["ed25519"]; }
|
get claimedEd25519Key() { return this._backupInfo["sender_claimed_keys"]?.["ed25519"]; }
|
||||||
|
|
||||||
_loadSessionKey(session) {
|
_loadSessionKey(session) {
|
||||||
const sessionKey = this._sessionInfo["session_key"];
|
const sessionKey = this._backupInfo["session_key"];
|
||||||
session.import_session(sessionKey);
|
session.import_session(sessionKey);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue