mirror of
				https://github.com/ergochat/ergo.git
				synced 2025-10-31 13:57:23 +01:00 
			
		
		
		
	don't give operator to the first person to enter an empty persistent channel
This commit is contained in:
		
							parent
							
								
									f17855fce9
								
							
						
					
					
						commit
						8c8d371ae2
					
				| @ -145,10 +145,8 @@ func (channel *Channel) Join(client *Client, key string) { | ||||
| 
 | ||||
| 	client.channels.Add(channel) | ||||
| 	channel.members.Add(client) | ||||
| 	if len(channel.members) == 1 { | ||||
| 		if !channel.flags[Persistent] { | ||||
| 			channel.members[client][ChannelCreator] = true | ||||
| 		} | ||||
| 	if !channel.flags[Persistent] && (len(channel.members) == 1) { | ||||
| 		channel.members[client][ChannelCreator] = true | ||||
| 		channel.members[client][ChannelOperator] = true | ||||
| 	} | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Jeremy Latt
						Jeremy Latt