We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7224dfe commit 639aeafCopy full SHA for 639aeaf
android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/screen/SelectLocationScreen.kt
@@ -851,13 +851,13 @@ private fun CustomListSuccess.message(context: Context): String =
851
is Renamed -> context.getString(R.string.name_was_changed_to, name)
852
is LocationsChanged ->
853
when {
854
- addedLocations.isNotEmpty() && removedLocations.isEmpty() ->
+ addedLocations.size == 1 && removedLocations.isEmpty() ->
855
context.getString(
856
R.string.location_was_added_to_list,
857
addedLocations.first(),
858
name
859
)
860
- removedLocations.isNotEmpty() && addedLocations.isEmpty() ->
+ removedLocations.size == 1 && addedLocations.isEmpty() ->
861
862
R.string.location_was_removed_from_list,
863
removedLocations.first(),
0 commit comments