Browse Source

wifi: dns is not required for static config

see #2582
pull/2584/head
Maxim Prokhorov 1 year ago
parent
commit
457e47edd9
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      code/espurna/wifi.cpp

+ 1
- 2
code/espurna/wifi.cpp View File

@ -654,8 +654,7 @@ struct IpSettings {
explicit operator bool() const {
return _ip.isSet()
&& _netmask.isSet()
&& _gateway.isSet()
&& _dns.isSet();
&& _gateway.isSet();
}
ip_info toIpInfo() const {


Loading…
Cancel
Save