From cde0e3f9e0a47d2b9405a536129ea1b813f6ba22 Mon Sep 17 00:00:00 2001 From: "Robin E. R. Davies" Date: Mon, 18 Aug 2025 08:03:27 -0400 Subject: [PATCH] 25.04 Hotspot parameters. --- src/HotspotManager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/HotspotManager.cpp b/src/HotspotManager.cpp index 55b768b..5eba353 100644 --- a/src/HotspotManager.cpp +++ b/src/HotspotManager.cpp @@ -890,9 +890,9 @@ void HotspotManagerImpl::StartHotspot() wirelessSecurity["psk"] = sdbus::Variant(wifiConfigSettings.password_); // required by Ubuntu 25.04 - wirelessSecurity["group"] = sdbus::Variant("ccmp"); - wirelessSecurity["pairwise"] = sdbus::Variant("ccmp"); - wirelessSecurity["proto"] = sdbus::Variant("rsn"); + wirelessSecurity["proto"] = sdbus::Variant(std::vector{"rsn"}); + wirelessSecurity["group"] = sdbus::Variant(std::vector{"ccmp"}); + wirelessSecurity["pairwise"] = sdbus::Variant(std::vector{"ccmp"}); // IPv4 shared method: NM will configure NAT and DHCP; static address is fine.