Skip to content

Commit

Permalink
[Keymap] Fix missing return for oled task in drashna userspace (#15012)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna committed Nov 2, 2021
1 parent 8812e37 commit 89e5e4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion users/drashna/oled_stuff.c
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ bool oled_task_user(void) {
if (is_keyboard_master()) {
if (timer_elapsed32(oled_timer) > 30000) {
oled_off();
return;
return false;
} else {
oled_on();
}
Expand Down

0 comments on commit 89e5e4e

Please sign in to comment.