summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--poezio/core/core.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/poezio/core/core.py b/poezio/core/core.py
index f32099f1..ab234367 100644
--- a/poezio/core/core.py
+++ b/poezio/core/core.py
@@ -1647,16 +1647,15 @@ class Core(object):
tabs.Tab.height - 2, 0)
self.left_tab_win = None
- def add_message_to_text_buffer(self, buff, txt,
- time=None, nickname=None, history=None):
+ def add_message_to_text_buffer(self, buff, txt, nickname=None):
"""
Add the message to the room if possible, else, add it to the Info window
(in the Info tab of the info window in the RosterTab)
"""
if not buff:
self.information('Trying to add a message in no room: %s' % txt, 'Error')
- else:
- buff.add_message(txt, time, nickname, history=history)
+ return
+ buff.add_message(txt, nickname=nickname)
def full_screen_redraw(self):
"""