Notify user if paired devices are not persistent.

This commit is contained in:
schlagmichdoch 2023-01-22 17:43:03 +01:00
parent 88e31407cb
commit c9f57c6fa0

View file

@ -872,7 +872,10 @@ class PairDeviceDialog extends Dialog {
}).finally(_ => { }).finally(_ => {
this._cleanUp() this._cleanUp()
}) })
.catch(_ => PersistentStorage.logBrowserNotCapable()); .catch(_ => {
Events.fire('notify-user', 'Paired devices are not persistent.')
PersistentStorage.logBrowserNotCapable()
});
} }
_pairDeviceJoinKeyInvalid() { _pairDeviceJoinKeyInvalid() {