fix: update connection if the secret channel is not available, but password is
This commit is contained in:
parent
4a311f15a4
commit
55b502dff3
1 changed files with 1 additions and 1 deletions
|
|
@ -992,7 +992,7 @@ impl NetworkManagerState {
|
|||
}
|
||||
|
||||
let known_conn = if let Some(known_conn) = known_conn {
|
||||
if secret_tx.is_none() || identity.is_some() {
|
||||
if (secret_tx.is_none() && password.is_some()) || identity.is_some() {
|
||||
known_conn.update(conn_settings).await.unwrap();
|
||||
}
|
||||
known_conn
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue