Limit how much is seen in the view

This commit is contained in:
Kgothatso Ngako
2026-05-05 00:10:57 +02:00
parent cd17e69c07
commit 52b141754b

View File

@@ -89,7 +89,8 @@ class HomeViewModel(
RepostEvent.KIND,
),
since = threeDaysAgo,
until = now
until = now,
limit = 50
)
}
HomeScreenType.Mentions -> {
@@ -109,7 +110,8 @@ class HomeViewModel(
Pair("p", listOf(publicKey))
),
since = threeDaysAgo,
until = now
until = now,
limit = 50
)
}
HomeScreenType.Messages -> {
@@ -121,7 +123,8 @@ class HomeViewModel(
LongTextNoteEvent.KIND,
),
since = threeDaysAgo,
until = now
until = now,
limit = 50
)
}
}