mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-22 21:26:38 +00:00
Merge branch 'master' into rocket-0.4
This commit is contained in:
commit
f1acc1e05a
@ -219,7 +219,6 @@ impl Factory for WSFactory {
|
|||||||
type Handler = WSHandler;
|
type Handler = WSHandler;
|
||||||
|
|
||||||
fn connection_made(&mut self, out: Sender) -> Self::Handler {
|
fn connection_made(&mut self, out: Sender) -> Self::Handler {
|
||||||
println!("WS: Connection made");
|
|
||||||
WSHandler {
|
WSHandler {
|
||||||
out,
|
out,
|
||||||
user_uuid: None,
|
user_uuid: None,
|
||||||
@ -228,12 +227,11 @@ impl Factory for WSFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn connection_lost(&mut self, handler: Self::Handler) {
|
fn connection_lost(&mut self, handler: Self::Handler) {
|
||||||
println!("WS: Connection lost");
|
|
||||||
|
|
||||||
// Remove handler
|
// Remove handler
|
||||||
let user_uuid = &handler.user_uuid.unwrap();
|
if let Some(user_uuid) = &handler.user_uuid {
|
||||||
if let Some(mut user_conn) = self.users.map.get_mut(user_uuid) {
|
if let Some(mut user_conn) = self.users.map.get_mut(user_uuid) {
|
||||||
user_conn.remove_item(&handler.out);
|
user_conn.remove_item(&handler.out);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user