3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-27 21:19:31 +01:00

services_support: ignore invalid autojoin channels

Reported by @rvzm on IRC.

Closes #308.
This commit is contained in:
James Lu 2016-08-04 10:25:03 -07:00
parent d855c6b2ea
commit a9fe0499e6

View File

@ -58,8 +58,11 @@ def spawn_service(irc, source, command, args):
channels = set(irc.serverdata.get('channels', [])) | sbot.extra_channels.get(irc.name, set())
for chan in channels:
irc.proto.join(u, chan)
irc.callHooks([irc.sid, 'PYLINK_SERVICE_JOIN', {'channel': chan, 'users': [u]}])
if utils.isChannel(chan):
irc.proto.join(u, chan)
irc.callHooks([irc.sid, 'PYLINK_SERVICE_JOIN', {'channel': chan, 'users': [u]}])
else:
log.warning('(%s) Ignoring invalid autojoin channel %r.', irc.name, chan)
utils.add_hook(spawn_service, 'PYLINK_NEW_SERVICE')