We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2773e24 + 3045b63 commit 12b852fCopy full SHA for 12b852f
app/src/main/java/fr/free/nrw/commons/notification/NotificationActivity.java
@@ -10,6 +10,7 @@
10
11
import com.pedrogomez.renderers.RVRendererAdapter;
12
13
+import java.util.Collections;
14
import java.util.List;
15
16
import javax.inject.Inject;
@@ -58,6 +59,7 @@ private void addNotifications() {
58
59
.subscribeOn(Schedulers.io())
60
.observeOn(AndroidSchedulers.mainThread())
61
.subscribe(notificationList -> {
62
+ Collections.reverse(notificationList);
63
Timber.d("Number of notifications is %d", notificationList.size());
64
setAdapter(notificationList);
65
}, throwable -> Timber.e(throwable, "Error occurred while loading notifications"));
0 commit comments