diff --git a/plinth/network.py b/plinth/network.py index b061f7540..67a846b8a 100644 --- a/plinth/network.py +++ b/plinth/network.py @@ -486,7 +486,7 @@ def activate_connection(connection_uuid): connection = get_connection(connection_uuid) interface = connection.get_interface_name() client = get_nm_client() - for device in client.get_devices(): + for device in client.get_all_devices(): if device.get_iface() == interface: client.activate_connection_async(connection, device, '/', None, _callback, None)