diff options
| -rw-r--r-- | services/Network.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/Network.qml b/services/Network.qml index eb0d141..8515ef5 100644 --- a/services/Network.qml +++ b/services/Network.qml @@ -41,7 +41,7 @@ Singleton { strength: parseInt(net[1]), frequency: parseInt(net[2]), ssid: net[3], - bssid: net[4].replace(rep2, ":") + bssid: net[4]?.replace(rep2, ":") ?? "" }; }); const rNetworks = root.networks; |