diff options
| author | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2023-12-18 12:12:17 +0100 |
|---|---|---|
| committer | Jonathan <jonathan@mullvad.net> | 2023-12-21 13:33:59 +0100 |
| commit | a9e75d44832865eff883f1efdb914e261de27cd5 (patch) | |
| tree | 775a88f36f832030053f91462f36a0eade5427cf /mullvad-cli/src/format.rs | |
| parent | 72a22cf7d00dffdc99e4b2ae26a713416a2ed735 (diff) | |
| download | mullvadvpn-a9e75d44832865eff883f1efdb914e261de27cd5.tar.xz mullvadvpn-a9e75d44832865eff883f1efdb914e261de27cd5.zip | |
Handle am.i.mullvad.net with internal daemon event
Add `geoip::GeoIpHandler`, which sends an
`InternalDaemonEvent::LocationEvent` when the location arrives. It also
handles aborting in-flight requests and retries.
Diffstat (limited to 'mullvad-cli/src/format.rs')
| -rw-r--r-- | mullvad-cli/src/format.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mullvad-cli/src/format.rs b/mullvad-cli/src/format.rs index 0e920b6218..512b632dc8 100644 --- a/mullvad-cli/src/format.rs +++ b/mullvad-cli/src/format.rs @@ -51,7 +51,7 @@ pub fn print_location(state: &TunnelState) { _ => return, }; if let Some(location) = location { - print!("Your connection appears from: {}", location.country); + print!("Your connection appears to be from: {}", location.country); if let Some(city) = &location.city { print!(", {}", city); } |
