summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2018-12-18 10:20:47 +0100
committerLinus Färnstrand <linus@mullvad.net>2018-12-18 10:21:58 +0100
commite786649b0fbca43d7fc8def3502c27ac4d3ea870 (patch)
tree52f41de4cfb61005960f18656adde7f2a71518c8
parentac8ad2a02e1c1c284c4fba3979a91311ed938d07 (diff)
downloadmullvadvpn-e786649b0fbca43d7fc8def3502c27ac4d3ea870.tar.xz
mullvadvpn-e786649b0fbca43d7fc8def3502c27ac4d3ea870.zip
Fix return type of update_relay_locations
-rw-r--r--CHANGELOG.md1
-rw-r--r--mullvad-ipc-client/src/lib.rs2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cb53249f2d..c064995d42 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -36,6 +36,7 @@ Line wrap the file at 100 chars. Th
### Fixed
- Stop GUI from glitching during the short reconnect state.
- Dismiss notifications automatically after four seconds in all platforms.
+- Fix error printed from the CLI when issuing `relay update`.
## [2018.6-beta1] - 2018-12-05
diff --git a/mullvad-ipc-client/src/lib.rs b/mullvad-ipc-client/src/lib.rs
index e04f86e4bf..066bd8250d 100644
--- a/mullvad-ipc-client/src/lib.rs
+++ b/mullvad-ipc-client/src/lib.rs
@@ -160,7 +160,7 @@ impl DaemonRpcClient {
self.call("get_relay_locations", &NO_ARGS)
}
- pub fn update_relay_locations(&mut self) -> Result<RelayList> {
+ pub fn update_relay_locations(&mut self) -> Result<()> {
self.call("update_relay_locations", &NO_ARGS)
}