Skip to content

Commit 639aeaf

Browse files
committed
Fix issue when adding more than one location
1 parent 7224dfe commit 639aeaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

android/app/src/main/kotlin/net/mullvad/mullvadvpn/compose/screen/SelectLocationScreen.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -851,13 +851,13 @@ private fun CustomListSuccess.message(context: Context): String =
851851
is Renamed -> context.getString(R.string.name_was_changed_to, name)
852852
is LocationsChanged ->
853853
when {
854-
addedLocations.isNotEmpty() && removedLocations.isEmpty() ->
854+
addedLocations.size == 1 && removedLocations.isEmpty() ->
855855
context.getString(
856856
R.string.location_was_added_to_list,
857857
addedLocations.first(),
858858
name
859859
)
860-
removedLocations.isNotEmpty() && addedLocations.isEmpty() ->
860+
removedLocations.size == 1 && addedLocations.isEmpty() ->
861861
context.getString(
862862
R.string.location_was_removed_from_list,
863863
removedLocations.first(),

0 commit comments

Comments
 (0)