We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18d785f commit 1496becCopy full SHA for 1496bec
App/Services/RpcController.cs
@@ -235,10 +235,7 @@ public async Task StopVpn(CancellationToken ct = default)
235
throw new VpnLifecycleException($"Failed to stop VPN. Service reported failure: {reply.Stop.ErrorMessage}");
236
}
237
238
- if (reply.Stop.Success)
239
- {
240
- MutateState(state => { state.VpnLifecycle = VpnLifecycle.Stopped; });
241
- }
+ MutateState(state => { state.VpnLifecycle = VpnLifecycle.Stopped; });
242
243
244
public async ValueTask DisposeAsync()
0 commit comments