fix issue #4726
This commit is contained in:
parent
e8563a05c7
commit
3e27f82765
1 changed files with 5 additions and 4 deletions
|
|
@ -828,9 +828,6 @@ impl Connection {
|
|||
|
||||
async fn on_open(&mut self, addr: SocketAddr) -> bool {
|
||||
log::debug!("#{} Connection opened from {}.", self.inner.id, addr);
|
||||
if !self.check_privacy_mode_on().await {
|
||||
return false;
|
||||
}
|
||||
if !self.check_whitelist(&addr).await {
|
||||
return false;
|
||||
}
|
||||
|
|
@ -1344,7 +1341,11 @@ impl Connection {
|
|||
}
|
||||
}
|
||||
}
|
||||
_ => {}
|
||||
_ => {
|
||||
if !self.check_privacy_mode_on().await {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(all(target_os = "linux", feature = "linux_headless"))]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue