1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 04:56:12 +03:00

fix linux divine_process_list

Fixes #4993
This commit is contained in:
crides 2024-02-11 21:31:03 -08:00 committed by Wez Furlong
parent 71cc4e1721
commit 217dfb30f5

View File

@ -73,7 +73,7 @@ impl LocalProcessInfo {
name: name.to_string(),
status: fields.first()?.to_string(),
ppid: fields.get(1)?.parse().ok()?,
starttime: fields.get(20)?.parse().ok()?,
starttime: fields.get(19)?.parse().ok()?,
})
}