Skip to content
Snippets Groups Projects
Commit 53430b2a authored by Vijver, van de, Bob (UT-GUEST)'s avatar Vijver, van de, Bob (UT-GUEST)
Browse files

Disable channel notice behaviour, always send message

parent 78585cfd
No related branches found
No related tags found
No related merge requests found
......@@ -635,10 +635,10 @@ class Connection:
if len(segment) > maxlength:
segment = segment[:maxlength]
try:
if channel.startswith('#'):
self.connection.notice(channel, segment)
else:
self.connection.privmsg(channel, segment)
#if channel.startswith('#'):
# self.connection.notice(channel, segment)
#else:
self.connection.privmsg(channel, segment)
except ValueError as err:
LOG.warning((
"rejected a message to %s on %s "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment