From 47947e3546c71cf3bcc773cac09c573001c2bc0e Mon Sep 17 00:00:00 2001 From: nielsandriesse Date: Tue, 2 Jun 2020 16:07:16 +1000 Subject: [PATCH] Update copy --- src/org/thoughtcrime/securesms/loki/activities/PathActivity.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/thoughtcrime/securesms/loki/activities/PathActivity.kt b/src/org/thoughtcrime/securesms/loki/activities/PathActivity.kt index 6ef05ef967..929e5de266 100644 --- a/src/org/thoughtcrime/securesms/loki/activities/PathActivity.kt +++ b/src/org/thoughtcrime/securesms/loki/activities/PathActivity.kt @@ -140,7 +140,7 @@ class PathActivity : PassphraseRequiredActionBarActivity() { private fun getPathRow(snode: Snode, location: LineView.Location, dotAnimationStartDelay: Long, dotAnimationRepeatInterval: Long, isGuardSnode: Boolean): LinearLayout { val title = if (isGuardSnode) resources.getString(R.string.activity_path_guard_node_row_title) else resources.getString(R.string.activity_path_service_node_row_title) - val subtitle = IP2Country.shared.countryNamesCache[snode.ip] ?: "Loading..." + val subtitle = IP2Country.shared.countryNamesCache[snode.ip] ?: "Resolving..." return getPathRow(title, subtitle, location, dotAnimationStartDelay, dotAnimationRepeatInterval) } // endregion