Skip to content

Commit cfeeb4c

Browse files
committed
Disable same_ip
1 parent 4cf9fa2 commit cfeeb4c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

mullvad-api/src/device.rs

+4
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,15 @@ impl DevicesProxy {
4242
struct DeviceSubmission {
4343
pubkey: wireguard::PublicKey,
4444
hijack_dns: bool,
45+
same_ip: bool,
4546
}
4647

4748
let submission = DeviceSubmission {
4849
pubkey,
4950
hijack_dns: false,
51+
52+
// TODO: same_ip on stagemole.eu is bork. remove this before merging to main.
53+
same_ip: false,
5054
};
5155

5256
let service = self.handle.service.clone();

0 commit comments

Comments
 (0)