volume: fix 1 digit error

This commit is contained in:
Jeeves 2024-03-18 15:59:34 -06:00
parent 2858050579
commit 9e8b663694

View file

@ -22,11 +22,11 @@ pub fn getJson(module: *const Module) !Module.JSON {
}); });
if (std.mem.indexOfScalar(u8, child.stdout, '[')) |volume_idx| { if (std.mem.indexOfScalar(u8, child.stdout, '[')) |volume_idx| {
const volume = try std.fmt.parseInt(u8, child.stdout[volume_idx + 1 .. volume_idx + 3], 10); if (std.mem.indexOfScalarPos(u8, child.stdout, volume_idx, '%')) |percent_idx| {
return .{ const volume = try std.fmt.parseInt(u8, child.stdout[volume_idx + 1 .. percent_idx], 10);
.full_text = try std.fmt.allocPrint(self.module.allocator, "{d:0>2}%", .{volume}), return .{
}; .full_text = try std.fmt.allocPrint(self.module.allocator, "{d: >2}%", .{volume}),
} else return .{ };
.full_text = "?", } else return .{ .full_text = "?" };
}; } else return .{ .full_text = "?" };
} }