mirror of
https://github.com/passepartoutvpn/wireguard-apple.git
synced 2025-03-02 11:42:09 +00:00
Tunnels list: Fix status switch look after flipping it off after an error
This commit is contained in:
parent
0d4218f0c7
commit
bfdb3efa41
@ -290,10 +290,11 @@ extension TunnelsListTableViewController: UITableViewDataSource {
|
|||||||
if (isOn) {
|
if (isOn) {
|
||||||
tunnelsManager.startActivation(of: tunnel) { [weak s] error in
|
tunnelsManager.startActivation(of: tunnel) { [weak s] error in
|
||||||
if let error = error {
|
if let error = error {
|
||||||
ErrorPresenter.showErrorAlert(error: error, from: s)
|
ErrorPresenter.showErrorAlert(error: error, from: s, onPresented: {
|
||||||
DispatchQueue.main.async {
|
DispatchQueue.main.async {
|
||||||
cell.statusSwitch.isOn = false
|
cell.statusSwitch.isOn = false
|
||||||
}
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user