Make pagination logic slightly more robust
This commit is contained in:
parent
32962a5616
commit
dbf23fafbf
@ -61,7 +61,7 @@ EventStore::EventStore(std::string room_id, QObject *)
|
||||
&EventStore::oldMessagesRetrieved,
|
||||
this,
|
||||
[this](const mtx::responses::Messages &res) {
|
||||
if (cache::client()->previousBatchToken(room_id_) == res.end) {
|
||||
if (res.end.empty() || cache::client()->previousBatchToken(room_id_) == res.end) {
|
||||
noMoreMessages = true;
|
||||
emit fetchedMore();
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user