Report number of found message for list state

This commit is contained in:
M66B
2020-11-27 08:27:57 +01:00
parent d791788985
commit 5a15249ed4
2 changed files with 11 additions and 8 deletions

View File

@@ -4537,9 +4537,9 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
}
@Override
public void onLoaded() {
public void onLoaded(int found) {
loading = false;
updateListState("Loaded", SimpleTask.getCount(), adapter.getItemCount());
updateListState("Loaded found=" + found, SimpleTask.getCount(), adapter.getItemCount() + found);
}
@Override