Fix initial meeting topic setting

Commit 9254a4ae caused meeting topics that are supplied to
meetingtopic action, which means meeting topics won't actually be
set unless someone explicitly sets one later. This commit makes it
perform both actions. Fixes bug 1080269.

Change-Id: Ide4115eef4341450a6641bc490f00f705b208112
This commit is contained in:
Garrett Holmstrom 2012-11-17 23:56:35 -08:00 committed by Jeremy Stanley
parent a306d7c1dc
commit 11fe412f6d

View File

@ -314,6 +314,7 @@ class MeetingCommands(object):
for messageline in message.split('\n'):
self.reply(messageline)
if line.strip():
self.do_meetingtopic(nick=nick, line=line, time_=time_, **kwargs)
self.do_meetingname(nick=nick, line=line, time_=time_, **kwargs)
def do_endmeeting(self, nick, time_, **kwargs):
"""End the meeting."""