aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI/TunnelViewModel.swift
diff options
context:
space:
mode:
authorRoopesh Chander <roop@roopc.net>2019-01-28 13:05:16 +0530
committerRoopesh Chander <roop@roopc.net>2019-01-28 16:07:28 +0530
commitd1f83d167e0efa4d732cec44afb239357bdc4474 (patch)
treec82e9e87d67d9e5858333046ab67888f2d9381e2 /WireGuard/WireGuard/UI/TunnelViewModel.swift
parentTunnelsManager: Invoke reload() in a subsequent runloop (diff)
downloadwireguard-apple-d1f83d167e0efa4d732cec44afb239357bdc4474.tar.xz
wireguard-apple-d1f83d167e0efa4d732cec44afb239357bdc4474.zip
Persistent Keepalive detail should read 'every n seconds'
Signed-off-by: Roopesh Chander <roop@roopc.net>
Diffstat (limited to '')
-rw-r--r--WireGuard/WireGuard/UI/TunnelViewModel.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/WireGuard/WireGuard/UI/TunnelViewModel.swift b/WireGuard/WireGuard/UI/TunnelViewModel.swift
index 9124a00..805e03d 100644
--- a/WireGuard/WireGuard/UI/TunnelViewModel.swift
+++ b/WireGuard/WireGuard/UI/TunnelViewModel.swift
@@ -252,7 +252,7 @@ class TunnelViewModel {
scratchpad[.endpoint] = endpoint.stringRepresentation
}
if let persistentKeepAlive = config.persistentKeepAlive {
- scratchpad[.persistentKeepAlive] = String(persistentKeepAlive)
+ scratchpad[.persistentKeepAlive] = tr(format: "tunnelPeerPersistentKeepaliveValue (%d)", persistentKeepAlive)
}
// TODO(roopc): These next 3 fields should be prettier
// - bytes() in https://git.zx2c4.com/WireGuard/tree/src/tools/show.c#n185