diff options
| -rw-r--r-- | mullvad-daemon/src/relays.rs | 2 | ||||
| -rw-r--r-- | mullvad-rpc/src/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mullvad-daemon/src/relays.rs b/mullvad-daemon/src/relays.rs index 11c0d49930..c11ad2df4c 100644 --- a/mullvad-daemon/src/relays.rs +++ b/mullvad-daemon/src/relays.rs @@ -498,7 +498,7 @@ impl RelayListUpdater { let download_future = self .rpc_client - .relay_list() + .relay_list_v2() .map_err(|e| Error::with_chain(e, ErrorKind::DownloadError)); let relay_list = Timer::default() .timeout(download_future, DOWNLOAD_TIMEOUT) diff --git a/mullvad-rpc/src/lib.rs b/mullvad-rpc/src/lib.rs index 18ba30fa92..93962dbdba 100644 --- a/mullvad-rpc/src/lib.rs +++ b/mullvad-rpc/src/lib.rs @@ -122,7 +122,7 @@ jsonrpc_client!(pub struct ProblemReportProxy { }); jsonrpc_client!(pub struct RelayListProxy { - pub fn relay_list(&mut self) -> RpcRequest<RelayList>; + pub fn relay_list_v2(&mut self) -> RpcRequest<RelayList>; }); jsonrpc_client!(pub struct AppVersionProxy { |
