Browse Source

light: capture report value

pull/2552/head
Maxim Prokhorov 1 year ago
parent
commit
c668e546a8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      code/espurna/light.cpp

+ 1
- 1
code/espurna/light.cpp View File

@ -650,7 +650,7 @@ struct LightTimerValue {
void wait_set(Duration duration, T value) {
_timer.once(
duration,
[&]() {
[this, value]() {
_value = value;
});
}


Loading…
Cancel
Save