File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
WordPress/src/main/java/org/wordpress/android/support/aibot/repository Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import javax.inject.Inject
2020import javax.inject.Named
2121
2222private const val BOT_ID = " jetpack-chat-mobile"
23+ private const val ITEMS_PER_PAGE = 20
2324
2425class AIBotSupportRepository @Inject constructor(
2526 private val appLogWrapper : AppLogWrapper ,
@@ -75,9 +76,7 @@ class AIBotSupportRepository @Inject constructor(
7576 chatId = chatId.toULong(),
7677 params = GetBotConversationParams (
7778 pageNumber = pageNumber.toULong(),
78- // TODO: this is set to 4 for testing purpose
79- // The TODO is preventing the Pr to be merged. Change it to a higher number before that
80- itemsPerPage = 4U
79+ itemsPerPage = ITEMS_PER_PAGE .toULong()
8180 )
8281 )
8382 }
You can’t perform that action at this time.
0 commit comments