Skip to content

Commit 4d77c51

Browse files
committed
Fix bug causing default to manual IPv4 method
1 parent d5cc7af commit 4d77c51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proton_wap/src/ap.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ impl AccessPoint {
7373
let (connection, _state) = wifi_device.create_hotspot_advanced::<str>(
7474
config.ssid.as_str(),
7575
Some (config.pass.as_str()),
76-
Some (config.gateway),
76+
config.gateway,
7777
config.security.as_str(),
7878
config.band.as_str(),
7979
)?;

0 commit comments

Comments
 (0)