Skip to content

Commit

Permalink
Fix problem with mDNS not registering properly for telnet (#1393)
Browse files Browse the repository at this point in the history
  • Loading branch information
breiler authored Dec 3, 2024
1 parent 5fc38a2 commit 937cf76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FluidNC/src/WebUI/TelnetServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace WebUI {
_wifiServer->begin();
_setupdone = true;

Mdns::add("telnet", "tcp", _port);
Mdns::add("_telnet", "_tcp", _port);
}

void TelnetServer::deinit() {
Expand Down

0 comments on commit 937cf76

Please sign in to comment.