diff options
author | Erik Johnston <erik@matrix.org> | 2015-05-12 10:28:10 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-05-12 10:28:10 +0100 |
commit | 4df11b503957a74a948150950da49574c21887bf (patch) | |
tree | c389d0586c5e9cc15a4cb0973f00a74c0ce989db /synapse/handlers/message.py | |
parent | Initial hack at wiring together pagination and backfill (diff) | |
download | synapse-4df11b503957a74a948150950da49574c21887bf.tar.xz |
Make get_current_token accept a direction parameter, which tells whether the source whether we want a token for going 'forwards' or 'backwards'
Diffstat (limited to 'synapse/handlers/message.py')
-rw-r--r-- | synapse/handlers/message.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py index 38e375f86a..1809a44a99 100644 --- a/synapse/handlers/message.py +++ b/synapse/handlers/message.py @@ -89,7 +89,9 @@ class MessageHandler(BaseHandler): if not pagin_config.from_token: pagin_config.from_token = ( - yield self.hs.get_event_sources().get_current_token() + yield self.hs.get_event_sources().get_current_token( + direction='b' + ) ) room_token = RoomStreamToken.parse(pagin_config.from_token.room_key) |