volume: fix 1 digit error
This commit is contained in:
parent
2858050579
commit
9e8b663694
1 changed files with 7 additions and 7 deletions
|
@ -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 = "?" };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue