Skip to content

Commit 907629c

Browse files
committed
Fix magic number
1 parent 0c4578f commit 907629c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository/CustomListsRepository.kt

+5-1
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,15 @@ class CustomListsRepository(
8383
private suspend fun awaitCustomListById(id: String): CustomList? =
8484
settingsRepository.settingsUpdates
8585
.mapNotNull { settings -> settings?.customLists?.customLists?.find { it.id == id } }
86-
.firstOrNullWithTimeout(700000L)
86+
.firstOrNullWithTimeout(GET_CUSTOM_LIST_TIMEOUT_MS)
8787

8888
fun getCustomListById(id: String): CustomList? =
8989
settingsRepository.settingsUpdates.value?.customLists?.customLists?.find { it.id == id }
9090

9191
private fun getGeographicLocationConstraintByCode(code: String): GeographicLocationConstraint? =
9292
relayListListener.relayListEvents.value.getGeographicLocationConstraintByCode(code)
93+
94+
companion object {
95+
private const val GET_CUSTOM_LIST_TIMEOUT_MS = 5000L
96+
}
9397
}

0 commit comments

Comments
 (0)