callbacks: Actually obey the to argument of reply()

This commit is contained in:
James Vega 2009-02-02 23:42:04 +00:00
parent 125d542706
commit db615f2c40
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
###
# Copyright (c) 2002-2005, Jeremiah Fincher
# Copyright (c) 2008, James Vega
# Copyright (c) 2008-2009, James Vega
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@ -164,6 +164,8 @@ def reply(msg, s, prefixNick=None, private=None,
# Ok, let's make the target:
# XXX This isn't entirely right. Consider to=#foo, private=True.
target = ircutils.replyTo(msg)
if ircutils.isChannel(to):
target = to
if ircutils.isChannel(target):
channel = target
else: