fix(app): do not show intermediate images for board thumbnail

This commit is contained in:
psychedelicious 2024-09-19 11:18:26 +10:00
parent 3b33a27b1f
commit 8064a0a820

View File

@ -407,6 +407,7 @@ class SqliteImageRecordStorage(ImageRecordStorageBase):
FROM images
JOIN board_images ON images.image_name = board_images.image_name
WHERE board_images.board_id = ?
AND images.is_intermediate = FALSE
ORDER BY images.starred DESC, images.created_at DESC
LIMIT 1;
""",