mirror of
				https://github.com/ergochat/ergo.git
				synced 2025-10-30 21:37:23 +01:00 
			
		
		
		
	* Fix #1911 +s channels don't appear in /list even though on the channel * use channel.HasClient instead of custom iterative checker
This commit is contained in:
		
							parent
							
								
									777cb7c991
								
							
						
					
					
						commit
						b1a5a47480
					
				| @ -1633,7 +1633,7 @@ func listHandler(server *Server, client *Client, msg ircmsg.Message, rb *Respons | ||||
| 	clientIsOp := client.HasRoleCapabs("sajoin") | ||||
| 	if len(channels) == 0 { | ||||
| 		for _, channel := range server.channels.Channels() { | ||||
| 			if !clientIsOp && channel.flags.HasMode(modes.Secret) { | ||||
| 			if !clientIsOp && channel.flags.HasMode(modes.Secret) && !channel.hasClient(client) { | ||||
| 				continue | ||||
| 			} | ||||
| 			if matcher.Matches(channel) { | ||||
| @ -1648,7 +1648,7 @@ func listHandler(server *Server, client *Client, msg ircmsg.Message, rb *Respons | ||||
| 
 | ||||
| 		for _, chname := range channels { | ||||
| 			channel := server.channels.Get(chname) | ||||
| 			if channel == nil || (!clientIsOp && channel.flags.HasMode(modes.Secret)) { | ||||
| 			if channel == nil || (!clientIsOp && channel.flags.HasMode(modes.Secret) && !channel.hasClient(client)) { | ||||
| 				if len(chname) > 0 { | ||||
| 					rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.nick, utils.SafeErrorParam(chname), client.t("No such channel")) | ||||
| 				} | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 William Rehwinkel
						William Rehwinkel