parent
b36189c5c9
commit
d1b41a6615
|
@ -111,10 +111,18 @@ private extension AppContext {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
Task {
|
Task {
|
||||||
|
guard [.active, .activating].contains(tunnel.status) else {
|
||||||
|
return
|
||||||
|
}
|
||||||
if profile.isInteractive {
|
if profile.isInteractive {
|
||||||
try await tunnel.disconnect()
|
try await tunnel.disconnect()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
do {
|
||||||
|
try await tunnel.connect(with: profile, processor: profileProcessor)
|
||||||
|
} catch {
|
||||||
|
try await tunnel.disconnect()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue