3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00

relay: allow trailing .'s in subserver names

This commit is contained in:
James Lu 2019-03-20 21:14:12 -07:00
parent 88f45fb1d5
commit 63d63c0137

View File

@ -289,8 +289,8 @@ def spawn_relay_server(irc, remoteirc):
if irc.connected.is_set():
try:
suffix = irc.serverdata.get('relay_server_suffix', conf.conf.get('relay', {}).get('server_suffix', 'relay'))
# Strip any leading or trailing .'s
suffix = suffix.strip('.')
# Strip any leading .'s
suffix = suffix.lstrip('.')
# On some IRCds (e.g. InspIRCd), we have to delay endburst to prevent triggering
# join flood protections that are counted locally.