diff options
Diffstat (limited to 'Plugins/Monitors/Wireless.hs')
-rw-r--r-- | Plugins/Monitors/Wireless.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugins/Monitors/Wireless.hs b/Plugins/Monitors/Wireless.hs index 167a48f..a870633 100644 --- a/Plugins/Monitors/Wireless.hs +++ b/Plugins/Monitors/Wireless.hs @@ -26,6 +26,6 @@ runWireless (iface:_) = do let essid = wiEssid wi quality = wiQuality wi e = if essid == "" then "N/A" else essid - q <- if quality >= 0 then showWithColors show quality else return "N/A" + q <- if quality >= 0 then showWithColors show quality else return "" parseTemplate [e, q] runWireless _ = return ""
\ No newline at end of file |