aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI
diff options
context:
space:
mode:
authorRoopesh Chander <roop@roopc.net>2018-12-13 23:13:54 +0530
committerRoopesh Chander <roop@roopc.net>2018-12-13 23:21:49 +0530
commitf9239dae751780efee17af31359413fc57e1e002 (patch)
tree0fb3e9f77b70976392dbeb41ddde18155fee2722 /WireGuard/WireGuard/UI
parentRewrite Logger (diff)
downloadwireguard-apple-f9239dae751780efee17af31359413fc57e1e002.tar.xz
wireguard-apple-f9239dae751780efee17af31359413fc57e1e002.zip
TunnelsManager: Reintroduce waiting for another tunnel to deactivate
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to 'WireGuard/WireGuard/UI')
-rw-r--r--WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift2
1 files changed, 2 insertions, 0 deletions
diff --git a/WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift b/WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift
index 93b35e4..887c737 100644
--- a/WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift
+++ b/WireGuard/WireGuard/UI/iOS/TunnelDetailTableViewController.swift
@@ -270,6 +270,8 @@ private class StatusCell: UITableViewCell {
text = "Reactivating"
case .restarting:
text = "Restarting"
+ case .waiting:
+ text = "Waiting"
}
textLabel?.text = text
DispatchQueue.main.async { [weak statusSwitch] in