diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2018-01-16 00:03:43 +0000 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-01-16 11:52:09 +0100 |
commit | 3e3793b7010371152fc42a2fc7d361f4ac04b231 (patch) | |
tree | 1eb1dafd4f3bc34e3dbf3c79c7914bc38452bdac | |
parent | 322e10d1bd8169126a744b0d28bb6d2481f4c5fb (diff) | |
download | poezio-3e3793b7010371152fc42a2fc7d361f4ac04b231.tar.gz poezio-3e3793b7010371152fc42a2fc7d361f4ac04b231.tar.bz2 poezio-3e3793b7010371152fc42a2fc7d361f4ac04b231.tar.xz poezio-3e3793b7010371152fc42a2fc7d361f4ac04b231.zip |
Use refresh_input in process_presence_buffer to avoid traceback
-rw-r--r-- | poezio/tabs/muctab.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/tabs/muctab.py b/poezio/tabs/muctab.py index fa08ca55..9a1a0821 100644 --- a/poezio/tabs/muctab.py +++ b/poezio/tabs/muctab.py @@ -456,7 +456,7 @@ class MucTab(ChatTab): self.enable_self_ping_event() if self.core.current_tab() is not self: self.refresh_tab_win() - self.core.current_tab().input.refresh() + self.core.current_tab().refresh_input() self.core.doupdate() def handle_presence_unjoined(self, presence, deterministic, own=False): |