Skip to content

Commit 37cf343

Browse files
committed
Fix startup configure beep preventing the ready beep
Fix: Fix a potential extra short beep on startup
1 parent a471bbd commit 37cf343

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ static void configure(Data *d) {
224224

225225
if (d->state.state == STATE_DISABLED) {
226226
beep_alert(d, 3, false);
227-
} else {
227+
} else if (d->state.state != STATE_STARTUP) {
228228
beep_alert(d, 1, false);
229229
}
230230
}

0 commit comments

Comments
 (0)