feat: Implement category and product filtering in UI, add category exclusion, and refine product synchronization with active status and improved rowversion

This commit is contained in:
sebseb7
2025-11-24 09:16:33 +01:00
parent 320bcd4641
commit b743fabc80
4 changed files with 350 additions and 104 deletions

View File

@@ -30,7 +30,9 @@ export function registerImages(app, cacheDir) {
}
}, (err) => {
if (err) {
console.error(`❌ Error serving image ${resolvedPath}:`, err);
if (err.code !== 'ENOENT') {
console.error(`❌ Error serving image ${resolvedPath}:`, err);
}
if (!res.headersSent) {
res.status(404).send('Image not found');
}