3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-11 20:52:42 +01:00

handlers: send PyLink's connect time via 317 (RPL_WHOISIDLE)

This commit is contained in:
James Lu 2017-07-12 07:32:50 -07:00
parent 7c5f1533a0
commit 6a0859f56a

View File

@ -98,6 +98,9 @@ def handle_whois(irc, source, command, args):
# Show botmode info in WHOIS.
f(335, source, "%s :is a bot" % nick)
# :charybdis.midnight.vpn 317 GL GL 1946 1499867833 :seconds idle, signon time
f(317, source, "%s 0 %s :seconds idle (placeholder), signon time" % (nick, irc.start_ts))
# Call custom WHOIS handlers via the PYLINK_CUSTOM_WHOIS hook, unless the
# caller is marked a bot and the whois_show_extensions_to_bots option is False
if (source_is_bot and conf.conf['bot'].get('whois_show_extensions_to_bots')) or (not source_is_bot):