mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-26 22:50:08 +01:00
supplicant: fix BSSs property type
BSSs property is an array of object paths, not strings.
This commit is contained in:
parent
f7617511bb
commit
4b9b3d02c9
1 changed files with 1 additions and 1 deletions
|
|
@ -556,7 +556,7 @@ props_changed_cb (GDBusProxy *proxy,
|
|||
set_state_from_string (self, s);
|
||||
}
|
||||
|
||||
if (g_variant_lookup (changed_properties, "BSSs", "^a&s", &array)) {
|
||||
if (g_variant_lookup (changed_properties, "BSSs", "^a&o", &array)) {
|
||||
iter = array;
|
||||
while (*iter)
|
||||
handle_new_bss (self, *iter++);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue