Fix widget toggle not disabling On Demand before stopping VPN

Store wasOnDemandEnabled flag in providerConfiguration so the widget
can restore On Demand state on next start. Clear the flag when On
Demand is explicitly disabled in settings or when starting from the
main app.
This commit is contained in:
世界
2026-03-09 13:20:53 +08:00
parent c19945f65b
commit efa6088884
3 changed files with 39 additions and 2 deletions
+19 -1
View File
@@ -51,8 +51,17 @@ enum WidgetTunnelControl {
if started {
if manager.isEnabled == false {
manager.isEnabled = true
try await manager.saveToPreferences()
}
if let proto = manager.protocolConfiguration as? NETunnelProviderProtocol,
let config = proto.providerConfiguration,
config["wasOnDemandEnabled"] as? Bool == true
{
var newConfig = config
newConfig.removeValue(forKey: "wasOnDemandEnabled")
proto.providerConfiguration = newConfig
manager.isOnDemandEnabled = true
}
try await manager.saveToPreferences()
do {
try manager.connection.startVPNTunnel()
} catch {
@@ -60,6 +69,15 @@ enum WidgetTunnelControl {
throw error
}
} else {
if manager.isOnDemandEnabled {
if let proto = manager.protocolConfiguration as? NETunnelProviderProtocol {
var config = proto.providerConfiguration ?? [:]
config["wasOnDemandEnabled"] = true
proto.providerConfiguration = config
}
manager.isOnDemandEnabled = false
try await manager.saveToPreferences()
}
manager.connection.stopVPNTunnel()
}
}