mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-05 06:00:31 +00:00
More reorg
This commit is contained in:
parent
23157e2e8d
commit
1eb0937190
@ -29,7 +29,13 @@ fn chat_route(req: &HttpRequest<WsChatSessionState>) -> Result<HttpResponse, Err
|
||||
WSSession {
|
||||
id: 0,
|
||||
hb: Instant::now(),
|
||||
ip: req.connection_info().remote().unwrap_or("127.0.0.1:12345").split(":").next().unwrap_or("127.0.0.1").to_string()
|
||||
ip: req.connection_info()
|
||||
.remote()
|
||||
.unwrap_or("127.0.0.1:12345")
|
||||
.split(":")
|
||||
.next()
|
||||
.unwrap_or("127.0.0.1")
|
||||
.to_string()
|
||||
},
|
||||
)
|
||||
}
|
||||
|
@ -1233,6 +1233,7 @@ impl Perform for GetPost {
|
||||
sessions.remove(&addr);
|
||||
}
|
||||
|
||||
// If the room doesn't exist yet
|
||||
if chat.rooms.get_mut(&self.id).is_none() {
|
||||
chat.rooms.insert(self.id, HashSet::new());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user