From 95cc9b942297b8f0cd16b1eb4d336a5e5643681e Mon Sep 17 00:00:00 2001 From: Umar Arshad Date: Mon, 13 Jan 2020 14:25:24 -0500 Subject: Remove extra branch that broke when "rate information unavailable" --- batteryarc-widget/batteryarc.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'batteryarc-widget') diff --git a/batteryarc-widget/batteryarc.lua b/batteryarc-widget/batteryarc.lua index 0078164..dce483a 100644 --- a/batteryarc-widget/batteryarc.lua +++ b/batteryarc-widget/batteryarc.lua @@ -68,10 +68,8 @@ local function worker(args) local battery_info = {} local capacities = {} for s in stdout:gmatch("[^\r\n]+") do - local status, charge_str, time = string.match(s, '.+: (%a+), (%d?%d?%d)%%,?.*') - if string.match(s, 'rate information') then - -- ignore such line - elseif status ~= nil then + local status, charge_str, time = string.match(s, '.+: (%a+), (%d?%d?%d)%%,?(.*)') + if status ~= nil then table.insert(battery_info, { status = status, charge = tonumber(charge_str) }) else local cap_str = string.match(s, '.+:.+last full capacity (%d+)') -- cgit v1.2.3