Skip to content

Commit 590391d

Browse files
committed
model: Add dedicated render method call to presence update handler.
This small commit adds presence renderer function introduced in previous commit to the handler `start_presence_updates`. This way, the method `update_msg_box_presence_markers` is called every minute. Fixes zulip#896.
1 parent f37f582 commit 590391d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

zulipterminal/model.py

+2
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,8 @@ def _start_presence_updates(self) -> None:
345345
if hasattr(self.controller, 'view'):
346346
self.controller.view.users_view.update_user_list(
347347
user_list=self.users)
348+
(self.controller.view.middle_column
349+
.update_msg_box_presence_markers())
348350
time.sleep(60)
349351

350352
@asynch

0 commit comments

Comments
 (0)