Skip to content

Commit

Permalink
fix: usb nic
Browse files Browse the repository at this point in the history
  • Loading branch information
Mythologyli committed Nov 1, 2024
1 parent fd73c17 commit 96df2c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion networkdetector/networkdetector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void NetworkDetector::checkZjuLan()
while (!stream.atEnd())
{
line = stream.readLine();
if (line.contains("以太网") || line.contains("Ethernet"))
if (line.contains("以太网") || line.contains("有线") || line.contains("Ethernet"))
{
waitForIp = true;
}
Expand Down

0 comments on commit 96df2c1

Please sign in to comment.