mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 03:25:12 +01:00
Move check to fingerprintKey
This commit is contained in:
parent
284ec8a74f
commit
3e5cc07440
@ -28,9 +28,6 @@ class PushNotificationStatus {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function formatKey(key) {
|
function formatKey(key) {
|
||||||
if (!key) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
const partLength = 4;
|
const partLength = 4;
|
||||||
const partCount = Math.ceil(key.length / partLength);
|
const partCount = Math.ceil(key.length / partLength);
|
||||||
let formattedKey = "";
|
let formattedKey = "";
|
||||||
@ -80,7 +77,11 @@ export class SettingsViewModel extends ViewModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
get fingerprintKey() {
|
get fingerprintKey() {
|
||||||
return formatKey(this._session.fingerprintKey);
|
const key = this._session.fingerprintKey;
|
||||||
|
if (!key) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return formatKey(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
get deviceId() {
|
get deviceId() {
|
||||||
|
Loading…
Reference in New Issue
Block a user