From 8226feaba883711790352116536cbb4fbca43171 Mon Sep 17 00:00:00 2001 From: Patrick Balsiger Date: Thu, 27 Jun 2019 23:14:57 +0200 Subject: [PATCH] Comment out mdns --- src/WiFiNet.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/WiFiNet.cpp b/src/WiFiNet.cpp index 64ecf55..37c6f53 100644 --- a/src/WiFiNet.cpp +++ b/src/WiFiNet.cpp @@ -28,7 +28,9 @@ int WiFiNet::connect(){ if(!connectStation()) { createAccessPoint(); } - startDNS(); + // FIXME refactor mdns to plugin + // current mdns lib has a bug causing a reboot + //startDNS(); return 1; }