Notify user if paired devices are not persistent.
This commit is contained in:
parent
88e31407cb
commit
c9f57c6fa0
|
@ -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() {
|
||||||
|
|
Loading…
Reference in New Issue