From 457e47edd962fc71feb3da8f16c0cd1a9009edc3 Mon Sep 17 00:00:00 2001 From: Maxim Prokhorov Date: Tue, 14 Mar 2023 21:53:15 +0300 Subject: [PATCH] wifi: dns is not required for static config see #2582 --- code/espurna/wifi.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/espurna/wifi.cpp b/code/espurna/wifi.cpp index a42d17f9..f230b6ea 100644 --- a/code/espurna/wifi.cpp +++ b/code/espurna/wifi.cpp @@ -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 {