diff options
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | mullvad-ipc-client/src/lib.rs | 2 |
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) } |
