Skip to content

Fix progress feel over messages in Conversation view

Torsten Grote requested to merge 1359-conversation-progress into master

Unlike with many other lists, we are not clearing the list of private messages when restarting the activity. We still load the messages from the database and add them to the view. When there are no new message to add, the usual insert observers do not trigger and we do not call list.showData() although we should. Doing so removes the progress bar as soon as messages have been loaded.

The entire activity should be cleaned up and probably use a view model that keeps the messages during restarts. However, this is out of scope here and thus only a minimal fix is used.

Closes #1359

Merge request reports