From 30cc3ecf7b512c85613df83cab07d6bc87e9d9c6 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 10 Sep 2024 12:03:34 -0700 Subject: [PATCH] station: emit property changed for connected AP on roaming This was only done for connecting states, but needs to also be done for roaming. --- src/station.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/station.c b/src/station.c index 56a90f5f..ec0f7d49 100644 --- a/src/station.c +++ b/src/station.c @@ -1767,6 +1767,9 @@ static void station_enter_state(struct station *station, case STATION_STATE_ROAMING: case STATION_STATE_FT_ROAMING: case STATION_STATE_FW_ROAMING: + l_dbus_property_changed(dbus, netdev_get_path(station->netdev), + IWD_STATION_INTERFACE, "ConnectedAccessPoint"); + if (station->affinity_watch) { l_dbus_remove_watch(dbus_get_bus(), station->affinity_watch);