Add comment for cases of multiple from-pages.

Bug: 244122804
Test: unit-test & local build gallery
Change-Id: I8629b2e01b0ac4322027c07e6c17ad4853d03a8a
This commit is contained in:
Zekan Qian
2023-02-06 15:35:09 +08:00
parent b9f60293ca
commit 139ce67ac0

View File

@@ -62,6 +62,9 @@ class SettingsEntryRepository(sppRepository: SettingsPageProviderRepository) {
if (page == null || pageWithEntryMap.containsKey(page.id)) continue
val spp = sppRepository.getProviderOrNull(page.sppName) ?: continue
val newEntries = spp.buildEntry(page.arguments)
// The page id could be existed already, if there are 2+ pages go to the same one.
// For now, override the previous ones, which means only the last from-page is kept.
// TODO: support multiple from-pages if necessary.
pageWithEntryMap[page.id] = SettingsPageWithEntry(
page = page,
entries = newEntries,