From 696eadb01f97fb1d710347da5a0aa20924a69c51 Mon Sep 17 00:00:00 2001 From: jpirnay Date: Mon, 13 Apr 2026 12:10:49 +0200 Subject: [PATCH] Revert too agressive fallback cover gate --- src/activities/boot_sleep/SleepActivity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activities/boot_sleep/SleepActivity.cpp b/src/activities/boot_sleep/SleepActivity.cpp index b1cfe5c6..ac346040 100644 --- a/src/activities/boot_sleep/SleepActivity.cpp +++ b/src/activities/boot_sleep/SleepActivity.cpp @@ -365,7 +365,7 @@ void SleepActivity::onEnter() { return renderCustomSleepScreen(); case (CrossPointSettings::SLEEP_SCREEN_MODE::COVER): case (CrossPointSettings::SLEEP_SCREEN_MODE::COVER_CUSTOM): - if (APP_STATE.lastSleepFromReader) { + if (!APP_STATE.openEpubPath.empty()) { return renderCoverSleepScreen(); } else { return renderCustomSleepScreen();