fix(network): align name with spec

This commit is contained in:
Ashley Wulber 2026-05-28 19:38:30 -04:00 committed by Michael Murphy
parent ee85d07c48
commit a4e6ecb280

View file

@ -726,9 +726,10 @@ impl cosmic::Application for CosmicNetworkApplet {
tasks.push(update_state(conn.clone())); tasks.push(update_state(conn.clone()));
tasks.push(update_devices(conn.clone())); tasks.push(update_devices(conn.clone()));
tasks.push(load_vpns(conn)); tasks.push(load_vpns(conn));
let uuid = uuid::Uuid::new_v4().to_string().replace("-", "_");
let my_id = format!( let my_id = format!(
"com.system76.CosmicSettings.Applet.{}.NetworkManager.SecretAgent", "com.system76.CosmicSettings.Applet._{uuid}.NetworkManager.SecretAgent",
uuid::Uuid::new_v4()
); );
tasks.push(secret_agent_task(my_id).map(Message::SecretAgent)); tasks.push(secret_agent_task(my_id).map(Message::SecretAgent));
} }