You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checks for target_level in config and UI note that:
target_level can't be larger than X (when target_level is set to X).
A similar note is given in src/config.rs:
if conf.devices.target_level() >= target_level_limit {
let msg = format!("target_level can't be larger than {}", target_level_limit);
return Err(ConfigError::new(&msg).into());
Maybe the check should be > or the message updated to say larger or equal to...
The text was updated successfully, but these errors were encountered:
Checks for target_level in config and UI note that:
target_level can't be larger than X (when target_level is set to X).
A similar note is given in src/config.rs:
Maybe the check should be > or the message updated to say larger or equal to...
The text was updated successfully, but these errors were encountered: