diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2023-09-05 13:14:46 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2023-09-05 13:14:46 +0200 |
| commit | 3b7ddae6fb8fccc0aecb2da5deb326cb0ba89fc3 (patch) | |
| tree | c70a414441718115a5506332fcfd858bb83f4ab2 /mullvad-cli/src | |
| parent | 7444ac28c93fbdc6cfbbae648fa19eec70e57077 (diff) | |
| parent | 057c2e9c9cf1561fb9db3c7c560ef0144b545a0c (diff) | |
| download | mullvadvpn-3b7ddae6fb8fccc0aecb2da5deb326cb0ba89fc3.tar.xz mullvadvpn-3b7ddae6fb8fccc0aecb2da5deb326cb0ba89fc3.zip | |
Merge branch 'remove-forwarded-ports-code'
Diffstat (limited to 'mullvad-cli/src')
| -rw-r--r-- | mullvad-cli/src/cmds/account.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mullvad-cli/src/cmds/account.rs b/mullvad-cli/src/cmds/account.rs index d0da9165fc..3b3d12b153 100644 --- a/mullvad-cli/src/cmds/account.rs +++ b/mullvad-cli/src/cmds/account.rs @@ -112,9 +112,6 @@ impl Account { println!("Device id : {}", device.device.id); println!("Device pubkey : {}", device.device.pubkey); println!("Device created : {}", device.device.created,); - for port in device.device.ports { - println!("Device port : {port}"); - } } let expiry = rpc.get_account_data(device.account_token).await?; println!( @@ -156,9 +153,6 @@ impl Account { "Created : {}", device.created.with_timezone(&chrono::Local) ); - for port in device.ports { - println!("Port : {port}"); - } } else { println!("{}", device.pretty_name()); } |
