Skip to content

Commit

Permalink
Fix sleep after playlist not toggling nightmode #336, thanks to @dneu…
Browse files Browse the repository at this point in the history
  • Loading branch information
tueddy committed Sep 16, 2024
1 parent e2dc1cf commit 6a00706
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## DEV-branch

* 16.09.2024: Fix sleep after playlist not toggling nightmode #336, thanks to @dneukirchen !
* 12.09.2024: PlatformIO package 6.8.1 (Arduino 2.0.17, ESP-IDF 4.4.7)
* 12.09.2024: Change default settings to match "ESPuino-mini 4Layer" board
* 11.09.2024: Fix string's expected length for rfid-cmnd via mqtt
Expand Down
2 changes: 1 addition & 1 deletion src/Cmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ void Cmd_Action(const uint16_t mod) {
gPlayProperties.playUntilTrackNumber = 0;
gPlayProperties.sleepAfterPlaylist = !gPlayProperties.sleepAfterPlaylist;

Cmd_HandleSleepAction(gPlayProperties.sleepAfterCurrentTrack, modificatorSleepAtEOP, "EOP");
Cmd_HandleSleepAction(gPlayProperties.sleepAfterPlaylist, modificatorSleepAtEOP, "EOP");
System_IndicateOk();
break;
}
Expand Down
2 changes: 1 addition & 1 deletion src/revision.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pragma once

#include "gitrevision.h"
constexpr const char softwareRevision[] = "Software-revision: 20240912-1-DEV";
constexpr const char softwareRevision[] = "Software-revision: 20240916-1-DEV";

0 comments on commit 6a00706

Please sign in to comment.