Skip to content

Removed duplicate MDNS.begin() call in example #8513

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Removed duplicate MDNS.begin() call in example
  • Loading branch information
PilnyTomas committed Aug 11, 2023
commit e9346a635d21c4d48e4cabfb579d9ba844ba3bb5
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ void setup(void) {
Serial.println("WiFi failed, retrying.");
}

MDNS.begin(host);
if (MDNS.begin("esp32")) {
if (MDNS.begin(host)) {
Serial.println("mDNS responder started");
}

Expand Down