fix: prune books missing form sd card in recent books list (#1959)

This commit is contained in:
KemoNine
2026-05-16 22:03:49 +03:00
committed by GitHub
parent a3e51f9b1e
commit 93e81daf41
4 changed files with 26 additions and 14 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ void HomeActivity::loadRecentBooks(int maxBooks) {
}
// Skip if file no longer exists
if (!Storage.exists(book.path.c_str())) {
if (RecentBooksStore::isMissing(book)) {
continue;
}