diff --git a/mullvad-relay-selector/src/lib.rs b/mullvad-relay-selector/src/lib.rs index 7c8583493c3c..4c4913c364ee 100644 --- a/mullvad-relay-selector/src/lib.rs +++ b/mullvad-relay-selector/src/lib.rs @@ -339,6 +339,12 @@ impl RelaySelector { default_tunnel_type: TunnelType, custom_lists: &CustomListsSettings, ) -> Result { + #[cfg(target_os = "android")] + { + self.get_wireguard_endpoint(relay_constraints, retry_attempt, custom_lists) + } + + #[cfg(not(target_os = "android"))] match relay_constraints.tunnel_protocol { Constraint::Only(TunnelType::OpenVpn) => self.get_openvpn_endpoint( relay_constraints,