mirror of
				https://github.com/ergochat/ergo.git
				synced 2025-10-31 13:57:23 +01:00 
			
		
		
		
	clean up and fix targets for quit message
This commit is contained in:
		
							parent
							
								
									52dd2521c2
								
							
						
					
					
						commit
						2aa61b0dbe
					
				| @ -266,20 +266,22 @@ func (m *UserMsgCommand) HandleServer(s *Server) { | ||||
| 	s.tryRegister(c) | ||||
| } | ||||
| 
 | ||||
| func (m *QuitCommand) HandleServer(s *Server) { | ||||
| 	c := m.Client() | ||||
| func (m *QuitCommand) HandleServer(server *Server) { | ||||
| 	client := m.Client() | ||||
| 	iclients := client.InterestedClients() | ||||
| 	iclients.Remove(client) | ||||
| 
 | ||||
| 	s.clients.Remove(c) | ||||
| 	for channel := range c.channels { | ||||
| 		channel.members.Remove(c) | ||||
| 	server.clients.Remove(client) | ||||
| 	for channel := range client.channels { | ||||
| 		channel.members.Remove(client) | ||||
| 	} | ||||
| 
 | ||||
| 	c.Reply(RplError(s, c)) | ||||
| 	c.Destroy() | ||||
| 	client.Reply(RplError(server, client)) | ||||
| 	client.Destroy() | ||||
| 
 | ||||
| 	reply := RplQuit(c, m.message) | ||||
| 	for client := range c.InterestedClients() { | ||||
| 		client.Reply(reply) | ||||
| 	reply := RplQuit(client, m.message) | ||||
| 	for iclient := range iclients { | ||||
| 		iclient.Reply(reply) | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Jeremy Latt
						Jeremy Latt