Update prev_batch only while paginating

This commit is contained in:
Konstantinos Sideris 2017-05-13 19:58:48 +03:00
parent 0368d854cf
commit c060a136a9
2 changed files with 5 additions and 1 deletions

View File

@ -110,6 +110,7 @@ private:
bool isPaginationInProgress_ = false;
bool isInitialized = false;
bool isTimelineFinished = false;
bool isInitialSync = true;
const int SCROLL_BAR_GAP = 300;

View File

@ -219,7 +219,10 @@ int TimelineView::addEvents(const Timeline &timeline)
{
int message_count = 0;
prev_batch_token_ = timeline.previousBatch();
if (isInitialSync) {
prev_batch_token_ = timeline.previousBatch();
isInitialSync = false;
}
for (const auto &event : timeline.events()) {
TimelineItem *item = parseMessageEvent(event.toObject(), TimelineDirection::Bottom);