fix: would only create previews if none of the labels were present

This commit is contained in:
PiquelChips
2025-08-11 14:09:02 +02:00
parent 429c1e4cd8
commit 15e62961e8

View File

@@ -452,7 +452,7 @@ export default async function handler(
break;
}
}
if (hasLabel) continue;
if (!hasLabel) continue;
}
const previewLimit = app?.previewLimit || 0;