Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Download a screenful of history instead of fixed 10 messages #130

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion matrix/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -943,10 +943,12 @@ def room_get_messages(self, room_id):
if not room_buffer.prev_batch:
return False

lines = W.window_get_integer(W.current_window(), "win_chat_height")

uuid, request = self.client.room_messages(
room_id,
room_buffer.prev_batch,
limit=10)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right this should have been max_initial_sync_events instead. We should use this instead and make your way a configurable option. Pretty sure not everyone wants their chat window filled.

limit=lines)

room_buffer.backlog_pending = True
self.backlog_queue[uuid] = room_id
Expand Down