Comment out mdns

This commit is contained in:
Patrick Balsiger
2019-06-27 23:14:57 +02:00
parent 28d885b087
commit 8226feaba8

View File

@@ -28,7 +28,9 @@ int WiFiNet::connect(){
if(!connectStation()) { if(!connectStation()) {
createAccessPoint(); createAccessPoint();
} }
startDNS(); // FIXME refactor mdns to plugin
// current mdns lib has a bug causing a reboot
//startDNS();
return 1; return 1;
} }