mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2025-04-21 23:36:17 -04:00
Notify user if paired devices are not persistent.
This commit is contained in:
parent
88e31407cb
commit
c9f57c6fa0
1 changed files with 4 additions and 1 deletions
|
@ -872,7 +872,10 @@ class PairDeviceDialog extends Dialog {
|
|||
}).finally(_ => {
|
||||
this._cleanUp()
|
||||
})
|
||||
.catch(_ => PersistentStorage.logBrowserNotCapable());
|
||||
.catch(_ => {
|
||||
Events.fire('notify-user', 'Paired devices are not persistent.')
|
||||
PersistentStorage.logBrowserNotCapable()
|
||||
});
|
||||
}
|
||||
|
||||
_pairDeviceJoinKeyInvalid() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue