Closed L235 closed 2 years ago
Is there any way to make the comparison between self.channel_list
and self.channels.keys()
case-insensitive? I think that would fix this. (Can you tell Python is not my first language? 😄 )
There is a way, in this case the best way is probably to make sure both lists are lowercase. Since self.channels.keys()
seems to always be lowercase, we just need to make sure self.channel_list
is lowercase also which was expertly done by someone in 5035be86d48b0103ba7fb47c75497dab7a893fc5
Describe the bug A clear and concise description of what the bug is.
To reproduce Steps to reproduce the behavior:
Expected behavior A clear and concise description of what you expected to happen.
Console output If available, add console output.
Environment:
Additional context Add any other context about the problem here.