From 3abefc6eab4294f065945dd6e2fdfcd21d8c058c Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 2 Feb 2018 12:49:04 -0500 Subject: Another couple tweaks to the networking notification systems. --- src-qt5/src-cpp/framework-OSInterface-FreeBSD.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/src-cpp/framework-OSInterface-FreeBSD.cpp') diff --git a/src-qt5/src-cpp/framework-OSInterface-FreeBSD.cpp b/src-qt5/src-cpp/framework-OSInterface-FreeBSD.cpp index a1bdbdca..247b1bdb 100644 --- a/src-qt5/src-cpp/framework-OSInterface-FreeBSD.cpp +++ b/src-qt5/src-cpp/framework-OSInterface-FreeBSD.cpp @@ -106,7 +106,7 @@ float OSInterface::OS_networkStrengthFromDeviceName(QString name){ // Step 2: Scan access point to get signal/noise info = getCmdOutput("ifconfig", QStringList() << name << "list" << "scan").filter(bssid); if(info.isEmpty()){ return -1; } - QString signoise =info.first().section(" ", 4,4).simplified(); + QString signoise =info.first().section(" ", 4,4, QString::SectionSkipEmpty).simplified(); int sig = signoise.section(":",0,0).toInt(); int noise = signoise.section(":",1,1).toInt(); // Step 3: Turn signal/noise ratio into a percentage -- cgit