Skip to content

Commit

Permalink
Fix bug causing default to manual IPv4 method
Browse files Browse the repository at this point in the history
  • Loading branch information
josephrhobbs committed Aug 6, 2024
1 parent d5cc7af commit 4d77c51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion proton_wap/src/ap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ impl AccessPoint {
let (connection, _state) = wifi_device.create_hotspot_advanced::<str>(
config.ssid.as_str(),
Some (config.pass.as_str()),
Some (config.gateway),
config.gateway,
config.security.as_str(),
config.band.as_str(),
)?;
Expand Down

0 comments on commit 4d77c51

Please sign in to comment.