edwardslabs / CloudBot

CloudBot - The simple, fast, expandable, open-source Python IRC Bot!
GNU General Public License v3.0
28 stars 31 forks source link

Fix multiple joins being attempted to the same channel #180

Closed linuxdaemon closed 6 years ago

linuxdaemon commented 6 years ago

core_misc.py would iterate conn.channels and join each channel in that list, but core_tracker.py appends the channel to conn.channels whenever it sees a join from the server, which means the bot attempts to join the same channels multiple times.