File tree 1 file changed +5
-1
lines changed
android/app/src/main/kotlin/net/mullvad/mullvadvpn/repository
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -83,11 +83,15 @@ class CustomListsRepository(
83
83
private suspend fun awaitCustomListById (id : String ): CustomList ? =
84
84
settingsRepository.settingsUpdates
85
85
.mapNotNull { settings -> settings?.customLists?.customLists?.find { it.id == id } }
86
- .firstOrNullWithTimeout(700000L )
86
+ .firstOrNullWithTimeout(GET_CUSTOM_LIST_TIMEOUT_MS )
87
87
88
88
fun getCustomListById (id : String ): CustomList ? =
89
89
settingsRepository.settingsUpdates.value?.customLists?.customLists?.find { it.id == id }
90
90
91
91
private fun getGeographicLocationConstraintByCode (code : String ): GeographicLocationConstraint ? =
92
92
relayListListener.relayListEvents.value.getGeographicLocationConstraintByCode(code)
93
+
94
+ companion object {
95
+ private const val GET_CUSTOM_LIST_TIMEOUT_MS = 5000L
96
+ }
93
97
}
You can’t perform that action at this time.
0 commit comments