1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-24 13:48:56 +08:00
This commit is contained in:
Aidan 2024-06-06 12:42:03 +12:00
parent 42957707db
commit 2b6d0754ed

View File

@ -78,11 +78,13 @@ func UptimeWithContext(ctx context.Context) (uint64, error) {
return 0, fmt.Errorf("expected 'hours:minutes,' format but got '%s'", ut[4])
}
// Parse hours
hours, err = strconv.ParseUint(hm[0], 10, 64)
if err != nil {
return 0, err
}
// Remove trailing comma from minutes and parse
minutes, err = strconv.ParseUint(strings.Replace(hm[1], ",", "", -1), 10, 64)
if err != nil {
return 0, err