fix(variables): set bool should have variable class parameter

This commit is contained in:
2025-11-01 02:26:53 -04:00
parent 812036fada
commit 7a7fcc71c0
2 changed files with 8 additions and 4 deletions

View File

@@ -95,7 +95,7 @@ impl VariableController {
/// Set a boolean variable specified by `key` to `value`, converting the value.
/// The variable `class` controls the attributes for the variable.
pub fn set_bool(&self, key: &str, value: bool) -> Result<()> {
self.set(key, &[value as u8], VariableClass::BootAndRuntimeTemporary)
pub fn set_bool(&self, key: &str, value: bool, class: VariableClass) -> Result<()> {
self.set(key, &[value as u8], class)
}
}