Skip to content

Commit

Permalink
Fix bug printing power_rescue
Browse files Browse the repository at this point in the history
  • Loading branch information
mangelajo committed Oct 10, 2023
1 parent 6730df7 commit 4460fd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/application/src/shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ where
write!(response, "\r\npower_off: ").ok();
write_u8(response, &cfg.power_off);
write!(response, "\r\npower_rescue: ").ok();
write_u8(response, &cfg.power_off);
write_u8(response, &cfg.power_rescue);
} else {
write!(response, "usage: get-config [name|tags|json|usb_console|power_on|power_off|power_rescue]").ok();
}
Expand Down

0 comments on commit 4460fd0

Please sign in to comment.